This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'Copeing from Source sheet to destination Sheet | |
'The column B is The ID in both Sheets | |
'So we copy the column from the column I of source sheet | |
'To the column I of Destination sheet | |
Sub copyCells() | |
'Destination sheet | |
Set destSheet = Sheets("Feuil1") | |
'Source Sheet | |
Set srcSheet = Sheets("Feuil2") |