open view

JOEE1979

Active Member
Joined
Dec 18, 2022
Messages
250
Office Version
  1. 365
Platform
  1. Windows
Merry Christmas to all.

I have a sheet that is about 200 pages long.
When I open the page, instead of it starting at the top and I have to scroll down,
Is it possible to have the table start where "L2" and column "A" would match?

schedule 4 tracker.xlsx
ABCDEFGHIJKL
1
2Schedule 4 Tracker2-Jan-24
3UnitOilWMAOtherOther2Scheduled DateStart DateEnd DateExpired DateActual duration (days)Notes
41-Jan-24BUS-24321-Jan-2431-Jan-24 
5BUS-24371-Jan-2431-Jan-24 
6BUS-24381-Jan-2431-Jan-24 
7BUS-24391-Jan-2431-Jan-24 
8BUS-24411-Jan-2431-Jan-24 
9BUS-24421-Jan-2431-Jan-24 
10BUS-24451-Jan-2431-Jan-24 
11BUS-24461-Jan-2431-Jan-24 
12BUS-24471-Jan-2431-Jan-24 
13BUS-24481-Jan-2431-Jan-24 
14BUS-24491-Jan-2431-Jan-24 
15BUS-24501-Jan-2431-Jan-24 
16BUS-24511-Jan-2431-Jan-24 
17BUS-24521-Jan-2431-Jan-24 
18BUS-24531-Jan-2431-Jan-24 
192-Jan-24BUS-24542-Jan-241-Feb-24 
20BUS-24552-Jan-241-Feb-24 
21BUS-24562-Jan-241-Feb-24 
22BUS-24572-Jan-241-Feb-24 
23BUS-24582-Jan-241-Feb-24 
24BUS-24592-Jan-241-Feb-24 
25BUS-24602-Jan-241-Feb-24 
26BUS-24612-Jan-241-Feb-24 
27BUS-24622-Jan-241-Feb-24 
28BUS-24632-Jan-241-Feb-24 
29BUS-24642-Jan-241-Feb-24 
30BUS-24652-Jan-241-Feb-24 
31BUS-24662-Jan-241-Feb-24 
32BUS-24672-Jan-241-Feb-24 
33BUS-24682-Jan-241-Feb-24 
Master
Cell Formulas
RangeFormula
J4:J33J4=[@[Scheduled Date]]+30
K4:K33K4=IF(IF(COUNTA(Master!$H4,Master!$I4)<>2,"",DAYS360(Master!$H4,Master!$I4,FALSE))=0,"SAME DAY",(IF(COUNTA(Master!$H4,Master!$I4)<>2,"",DAYS360(Master!$H4,Master!$I4,FALSE))))
G4,G19G4=A4
G5,G20G5=A4
G6,G21G6=A4
G7,G22G7=A4
G8,G23G8=A4
G9,G24G9=A4
G10,G25G10=A4
G11,G26G11=A4
G12,G27G12=A4
G13,G28G13=A4
G14,G29G14=A4
G15,G30G15=A4
G16,G31G16=A4
G17,G32G17=A4
G18,G33G18=A4
Cells with Conditional Formatting
CellConditionCell FormatStop If True
C32:F45Other TypeIcon setNO
C18:F31Other TypeIcon setNO
C4:F17Other TypeIcon setNO
A4:A5493Expression=($L$2=A4)textNO
B4:B5493Expression=AND($L$2=G4, (ISBLANK(I4)))textNO
B4:B5493Expression=AND($L$2>G4, (ISBLANK(I4)))textNO
B4:B5493Expression=AND($L$2>G4, NOT(ISBLANK(I4)))textNO
K4:K5493Expression=(ABS((K4-#REF!))/#REF!)>FlagPercenttextNO
Cells with Data Validation
CellAllowCriteria
B3Any value
F3Any value
G3Any value
H3Any value
I3:J3Any value
K3Any value
L3Any value
A1Any value
 

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college
If you need to scroll to the date very time you open your file then you could add this macro to your ThisWorkBook module.
VBA Code:
Option Explicit
Private Sub Workbook_Open()
    Sheets("Master").Range("A" & Cells.Find(What:=Sheets("Master").Range("L2"), SearchOrder:=xlRows, SearchDirection:=xlNext, LookIn:=xlValues).Row).Select
End Sub
 
Upvote 0
Sorry: the above code should've been:
Code:
Option Explicit
Private Sub Workbook_Open()
    Sheets("Master").Activate
    Range("A" & Cells.Find(What:=Range("L2"), SearchOrder:=xlRows, SearchDirection:=xlPrevious, LookIn:=xlValues).Row).Select
End Sub

-----
Or, if you need to scroll very time you move to the sheet "Master" then use only this other macro to be pasted in the "Master" module:
Code:
Option Explicit
Private Sub Worksheet_Activate()
    ActiveSheet.Range("A" & Cells.Find(What:=ActiveSheet.Range("L2"), SearchOrder:=xlRows, SearchDirection:=xlPrevious, LookIn:=xlValues).Row).Select
End Sub
 
Last edited:
Upvote 0
As far as I know, you can't do without a macro.
 
Upvote 0

Forum statistics

Threads
1,215,069
Messages
6,122,959
Members
449,096
Latest member
Anshu121

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