Find & view last row

iPete

New Member
Joined
Jun 1, 2011
Messages
2
Hi all,

I've attached a macro to a button that opens another tab, finds the last row in a column + 1, enters some text and provides some guidance via a pop up message.

However I need the user to be taken to this row instead of having to scroll down, is this possible?


Sub New_Issue()
'
' New_Issue Macro
'

'
Sheets("Table").Select
Lastrow = ActiveSheet.Cells(Rows.Count, "F").End(xlUp).Row
Range("Table!F" & Lastrow + 1).Value = "New"
MsgBox "Please complete Columns G to F (Blue)"


End Sub
 

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.
Code:
Range("Table!F" & Lastrow + 1)[B][COLOR="Red"].Activate[/COLOR][/B]
 
Upvote 0

Forum statistics

Threads
1,224,603
Messages
6,179,849
Members
452,948
Latest member
UsmanAli786

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