Variables in range object

swankyg

New Member
Joined
Mar 7, 2019
Messages
3
Hi, I'm trying to create a macro that will format data in a whole column, with the user typing the column letter into an input box.
I'm trying to use a variable (set via an input box) to pass the column letter to the data object.
Can you do this (I haven't been having any luck) and if not can you suggest how to select a column selected via user input?
Thanks!
 

Excel Facts

Format cells as currency
Select range and press Ctrl+Shift+4 to format cells as currency. (Shift 4 is the $ sign).
Welcome to the Board!

Here is a little example to show you how you can select an entire column based on an input value.
Code:
Sub Test()

    Dim myCol As String
    
    myCol = InputBox("Enter the column letter")
    
    On Error GoTo err_chk
    Cells(1, myCol).EntireColumn.Select
    On Error GoTo 0
    
    Exit Sub
    
err_chk:
    MsgBox myCol & " is not a valid column"
    
End Sub
 
Upvote 0

Forum statistics

Threads
1,213,583
Messages
6,114,503
Members
448,575
Latest member
hycrow

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