Why does this code require the "& 1" in the conversion from column letter to number?
Dim ColNum As Long
Dim ColLet As String
ColLet = InputBox("What is the column letter of the column you want to analyze?")
ColNum = Range(ColLet & 1).Column
MsgBox ColNum
If I remove the & 1 I get an...