Changing Column Reference in Macros?

J

JDM

I want to write a macro that will move to the next column each time I run it.
Below is what I have from a recording. I need to change the "AC:AC" to
"AD:AD" next time I run this macro, same for the AD below that. I can create
a table in my worksheets that will always have the new column to point to,
but I don't know how to reference it in my macro.

ActiveWindow.SmallScroll Down:=-16
Sheets(Array("Deposits", "Rates")).Select
Sheets("Deposits").Activate
Columns("AC:AC").Select
Application.CutCopyMode = False
Selection.Copy
Columns("AD:AD").Select
Selection.Insert Shift:=xlToRight
Columns("AC:AC").Select
 
F

FSt1

hi
you could use a variable in a cell on the sheet. just type in the next
column. then add this to your code.

dim v as string
v = range("A1").value
colunms(v).select

regards
FSt1
 
F

FSt1

hi again
forgot to mention. you don't need to reverence the column as AC:AC. you can
use just AC. excel will understand.

regards
FSt1
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top