I have this bit of code to get the address of the last cell in my worksheet. It returns "$U$463", how can I get it to return just the U" part??
Rui Martins
Range newContracts = activeWorksheet.Cells.SpecialCells(XlCellType.xlCellTypeLastCell);
string address = newContracts.get_Address();