convert column number to letter
Why didn't you say?
'-----------------------------------------------------------------
Function ColumnLetter(Col As Long)
'-----------------------------------------------------------------
Dim sColumn As String
sColumn = Split(Columns(Col).Address(, False), ":")(1)
ColumnLetter = sColumn
End Function
--
HTH
RP
(remove nothere from the email address if mailing direct)
"lvcha.gouqizi" wrote in message
oups.com...
thanks. but how to implement the conversion in VBA code?
|