Skip to content

Instantly share code, notes, and snippets.

View ibrahimhammani's full-sized avatar

Ibrahim HAMMANI ibrahimhammani

View GitHub Profile
@ibrahimhammani
ibrahimhammani / copy-cells-from-sheet-to-another.vba
Created October 8, 2017 18:06
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
'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")