D
dolphinv4
Hi,
I need a macro such that the macro will copy the
particular column that my active cell is. Currently, I
recorded a macro that looks like this:
Sub Macro1()
Columns("C:C").Select
Selection.Copy
Selection.Insert Shift:=xlToLeft
End Sub
1) How can I change the above such that i'll click on a
cell that I want the macro to copy the column, then run
the macro.
2) Is it possible for the macro to track the last
column, copy the column and insert to the left of the
column?
Thanks!
Regards,
Val
I need a macro such that the macro will copy the
particular column that my active cell is. Currently, I
recorded a macro that looks like this:
Sub Macro1()
Columns("C:C").Select
Selection.Copy
Selection.Insert Shift:=xlToLeft
End Sub
1) How can I change the above such that i'll click on a
cell that I want the macro to copy the column, then run
the macro.
2) Is it possible for the macro to track the last
column, copy the column and insert to the left of the
column?
Thanks!
Regards,
Val