I am using the following code to get the last column number but I am trying to get he last column address. So if the last column is 5 then the result I am looking for is "F"
Sub LastColumnInOneRow()
Dim LastCol As Integer
With Sheets("Current Pipeline")
LastCol = .Cells(1, .Columns.Count).End(xlToLeft).Column
End With
MsgBox LastCol
End Sub