Go to cell in very last column of the active row

shomic5

New Member
Joined
Dec 12, 2020
Messages
1
Office Version
  1. 2016
Platform
  1. Windows
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 :)
 

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
How about this?

VBA Code:
Sub getLastColumn()
Dim lastCol As Long
    lastCol = Cells(ActiveCell.Row, Columns.Count).End(xlToLeft).Column
    Cells(ActiveCell.Row, lastCol).Select
End Sub
 
Upvote 0
Hi & welcome to MrExcel.
How about
VBA Code:
Sub shomic()
   Dim c As Long
   c = Range("XFD1").End(xlToLeft).Column
   Cells(ActiveCell.Row, c).Select
End Sub
This assumes you have headers in row1.
 
Upvote 0

Forum statistics

Threads
1,215,073
Messages
6,122,975
Members
449,095
Latest member
Mr Hughes

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top