View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
Alan Webb Alan Webb is offline
external usenet poster
 
Posts: 3
Default getting the column name

I picked this up from another thread - Mr Ogilvy I think -

Public Function CLetter(rng As Range) As String
CLetter = Left(rng.Address(False, False), _
1 - CInt(rng.Column 26))
End Function