I found a really wonderful vba from alansidman - "Go to cell in specific column of the active row" (see below)
Sub JumpToFront()
Dim r As Long
r = ActiveCell.Row
Range("U" & r).Select
End Sub
But I need some code which goes to the very last column in the active row (not the last entry) the last column (which will change as the spreadsheet grows). It is currently CG but that may become CH, then CI as columns are added in before this column.
Can anyone give help
Sub JumpToFront()
Dim r As Long
r = ActiveCell.Row
Range("U" & r).Select
End Sub
But I need some code which goes to the very last column in the active row (not the last entry) the last column (which will change as the spreadsheet grows). It is currently CG but that may become CH, then CI as columns are added in before this column.
Can anyone give help