Hello
Do you think that would be possible to merge both formulas/functions in order to obtain my ColumnLetter value ? If so, what would be the proper syntax?
Thanks
Do you think that would be possible to merge both formulas/functions in order to obtain my ColumnLetter value ? If so, what would be the proper syntax?
VBA Code:
Dim ColumnNumber As Long
Dim ColumnLetter As String
ColumnNumber = WorksheetFunction.Match("Column Name", Rows("1:1"), 0)
ColumnLetter = Split(Cells(1, ColumnNumber).Address, "$")(1)
Thanks