How do you convert a numerical number to an Excel column name in C# without using automation getting the value directly from Excel.
Excel 2007 has a possible range o
Another VBA way
Public Function GetColumnName(TargetCell As Range) As String GetColumnName = Split(CStr(TargetCell.Cells(1, 1).Address), "$")(1) End Function