Good morning,
I have an excel sheet with data in 4 columns, i am want to create a macro that delete the first column, i m using this code:
Columns("A:A").Select
Selection.Delete Shift:=xlToLeft
there is some merged cell (A:D), so the macro select the 4 columns. I learned this code...