Can you set columns as variables?

David2

New Member
Joined
Jan 13, 2018
Messages
39
Can column A (column1) be somehow referred to as a variable? So instead of range(A1:B1) I could use (variableA,1 :variableB,1) or similar
 
Last edited:

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
Code:
Sub David()
  Dim vCol1 As Variant
  Dim vCol2 As Variant
  
  vCol1 = "A"
  vCol2 = "B"
  
  Range(Cells(1, vCol1), Cells(1, vCol2)).Interior.Color = vbRed
End Sub
 
Upvote 0
Thanks shg!

A bit off topic but can I join this with a macro that searches headers (A1:B1) and assigns variables based on that header value (header with value 'abc' becomes vCol1, header with value 'xyz' becomes vCol2)?
 
Upvote 0

Forum statistics

Threads
1,216,030
Messages
6,128,407
Members
449,448
Latest member
Andrew Slatter

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top