Update screen with: "Application.ScreenUpdating = False"

Maurizio

Well-known Member
Joined
Oct 15, 2002
Messages
687
Office Version
  1. 2007
Platform
  1. Windows
Is it possible to update screen (scrolling e see active cell to center of the screen) but using "Application.ScreenUpdating = False".
I'm often using:

Application.GoTo Reference:=Worksheets("DB").Cells(1, 1).End(xlDown).Offset(-10, 0), Scroll:=True
Cells(65536, 1).End(xlUp).Offset(1, 0).Select

but if data is < of 10 I get bug and it's bad.
Any best code?!
 

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)
Try this.

Re your first line of code :-

With Worksheets("DB").Cells(1, 1).End(xlDown)
If .Row < 10 Then
Application.GoTo Reference:=.End(xlUp), Scroll:=True
Else
Application.GoTo Reference:=.Offset(-10, 0), Scroll:=True
End If
End With

Re your second line of code, there's nothing that will create an error.
 
Upvote 0

Forum statistics

Threads
1,214,650
Messages
6,120,736
Members
448,988
Latest member
BB_Unlv

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