Using Excel 2003.
Is there a way to open a workbook so that the last row with data in it is always in view? The workbook has data entered into it by many people. Occasionally, the workbook is saved in a way so that the next person that opens the workbook has to scroll down to the next available row for data entry. Unfortunately, some do not know Excel that well and become confused. It would be simpler if Excel would open to the row auromatically. Any help would be most appreciated.
Thanks, Kenny
Let Sheet1 house the data of interest...
[TABLE="width: 144"]
<colgroup><col style="width: 48pt;" span="3" width="64"> <tbody>[TR]
[TD="class: xl63, width: 64, bgcolor: transparent"]
GAD[/TD]
[TD="class: xl63, width: 64, bgcolor: transparent"]
108WZ[/TD]
[TD="class: xl63, width: 64, bgcolor: transparent, align: right"]
0.059[/TD]
[/TR]
[TR]
[TD="class: xl63, bgcolor: transparent"] [/TD]
[TD="class: xl63, bgcolor: transparent"] [/TD]
[TD="class: xl63, bgcolor: transparent"] [/TD]
[/TR]
[TR]
[TD="class: xl64, bgcolor: transparent"]
Field-1[/TD]
[TD="class: xl64, bgcolor: transparent"]
Field-2[/TD]
[TD="class: xl64, bgcolor: transparent"]
Field-3[/TD]
[/TR]
[TR]
[TD="class: xl63, bgcolor: transparent"]
JAD[/TD]
[TD="class: xl63, bgcolor: transparent"]
117WZ[/TD]
[TD="class: xl63, bgcolor: transparent, align: right"]
0.672[/TD]
[/TR]
[TR]
[TD="class: xl63, bgcolor: transparent"]
KAD[/TD]
[TD="class: xl63, bgcolor: transparent"]
107WZ[/TD]
[TD="class: xl63, bgcolor: transparent, align: right"]
0.243[/TD]
[/TR]
[TR]
[TD="class: xl63, bgcolor: transparent"]
JAD[/TD]
[TD="class: xl63, bgcolor: transparent"]
128WZ[/TD]
[TD="class: xl63, bgcolor: transparent, align: right"]
0.448[/TD]
[/TR]
[TR]
[TD="class: xl63, bgcolor: transparent"]
LAD[/TD]
[TD="class: xl63, bgcolor: transparent"]
108WZ[/TD]
[TD="class: xl63, bgcolor: transparent, align: right"]
0.309[/TD]
[/TR]
[TR]
[TD="class: xl63, bgcolor: transparent"]
CAD[/TD]
[TD="class: xl63, bgcolor: transparent"]
192WZ[/TD]
[TD="class: xl63, bgcolor: transparent, align: right"]
0.932[/TD]
[/TR]
[TR]
[TD="class: xl63, bgcolor: transparent"]
ZAD[/TD]
[TD="class: xl63, bgcolor: transparent"]
191WZ[/TD]
[TD="class: xl63, bgcolor: transparent, align: right"]
0.396[/TD]
[/TR]
[TR]
[TD="class: xl63, bgcolor: transparent"]
XAD[/TD]
[TD="class: xl63, bgcolor: transparent"]
168WZ[/TD]
[TD="class: xl63, bgcolor: transparent, align: right"]
0.057[/TD]
[/TR]
[TR]
[TD="class: xl63, bgcolor: transparent"]
VAD[/TD]
[TD="class: xl63, bgcolor: transparent"]
122WZ[/TD]
[TD="class: xl63, bgcolor: transparent, align: right"]
0.393[/TD]
[/TR]
[TR]
[TD="class: xl63, bgcolor: transparent"]
VAD[/TD]
[TD="class: xl63, bgcolor: transparent"]
161WZ[/TD]
[TD="class: xl63, bgcolor: transparent, align: right"]
0.588[/TD]
[/TR]
[TR]
[TD="class: xl63, bgcolor: transparent"]
GAD[/TD]
[TD="class: xl63, bgcolor: transparent"]
108WZ[/TD]
[TD="class: xl63, bgcolor: transparent, align: right"]
0.059[/TD]
[/TR]
[TR]
[TD="class: xl63, bgcolor: transparent"] [/TD]
[TD="class: xl63, bgcolor: transparent"] [/TD]
[TD="class: xl63, bgcolor: transparent"] [/TD]
[/TR]
[TR]
[TD="class: xl63, bgcolor: transparent"] [/TD]
[TD="class: xl63, bgcolor: transparent"] [/TD]
[TD="class: xl63, bgcolor: transparent"] [/TD]
[/TR]
</tbody>[/TABLE]
A1, copied across:
=LOOKUP(9.99999999999999E+307,$C$4:INDEX($C:$C,ROWS($C:$C)),A$4:INDEX(A:A,ROWS(A:A)))
This formula will always show the last record. It uses the numeric column. If everything is text, replace the big number with the following big string: REPT("z",255).
If you want the record somewhere else, the formula becomes:
=LOOKUP(9.99999999999999E+307,Sheet1!$C:$C,Sheet1!A:A)
Hope this set up meets your needs.