Shortcut to Jump to Bottom of Range

Datatellsall2

New Member
Joined
Jul 17, 2018
Messages
23
Hello,

I was wondering if there is a way to jump to the bottom of a cell range if you have blanks in between. Please see my example below, as I would like to get from 5 to 4 in one shortcut. I know Ctrl + down arrow goes to the end of the cell range if there are no blanks, but was hoping to get to the very bottom (4 in this example) if there are blanks.

[TABLE="class: grid, width: 500, align: center"]
<tbody>[TR]
[TD]5[/TD]
[/TR]
[TR]
[TD][/TD]
[/TR]
[TR]
[TD]3[/TD]
[/TR]
[TR]
[TD][/TD]
[/TR]
[TR]
[TD][/TD]
[/TR]
[TR]
[TD][/TD]
[/TR]
[TR]
[TD]4[/TD]
[/TR]
</tbody>[/TABLE]
Thanks,
Matt
 

Excel Facts

Formula for Yesterday
Name Manager, New Name. Yesterday =TODAY()-1. OK. Then, use =YESTERDAY in any cell. Tomorrow could be =TODAY()+1.
Easy with VBA.

Code:
Sub GTB()

Cells(Rows.Count, ActiveCell.Column).End(xlUp).Select

End Sub


Then you can Hit Alt+F8 and click 'Options' to create your own keyboard shortcut to access it.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,223,903
Messages
6,175,284
Members
452,630
Latest member
OdubiYouth

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