S
scain2004
I'm trying to remove the first column (column "A") from the worksheet.
Nothing seems to be working.
I try:
Columns("A:A").Select
Selection.Delete
..but that deletes columns A and B.
And if I shift the cells one column to the left:
Columns("B:O").Select
Selection.Cut
Columns("A:N").Select
...nothing happens
If I manually do it, it works fine. But if I record and save it as
macro, when called the macro won't do what it's supposed to.
Any suggestions? I only want column A deleted, but it has to be don
automatically... at the end of my current routine
Nothing seems to be working.
I try:
Columns("A:A").Select
Selection.Delete
..but that deletes columns A and B.
And if I shift the cells one column to the left:
Columns("B:O").Select
Selection.Cut
Columns("A:N").Select
...nothing happens
If I manually do it, it works fine. But if I record and save it as
macro, when called the macro won't do what it's supposed to.
Any suggestions? I only want column A deleted, but it has to be don
automatically... at the end of my current routine