Hi,
I have message box that I am trying to convert from a column number to column letter to make the code more user friendly as I was performing this on Column AC which is column 29 (much more confusing)
How would I go about converting the column number to column letter for this code?
Thanks!
I have message box that I am trying to convert from a column number to column letter to make the code more user friendly as I was performing this on Column AC which is column 29 (much more confusing)
How would I go about converting the column number to column letter for this code?
Code:
c = Selection.column
If MsgBox("Check column " & c & "?", vbOKCancel) = vbOK Then
Thanks!