Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Excel 2003 - I have a spreadsheet that is divided so that I have one employee
schedule per page (not per sheet). I have used page break to split the pages up. Some of the schedules are shorter than a computer screen and some are longer. When I am looking through the schedules, I usually want to be able to pop to the next employee without using my scroll or cursor. Is there a way to just move down one page at a time instead of one computer window at a time? Thank you in advance. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Select Upper Left cells of emploe.1's page
In namebox type Page.1 + Enter Select Upper Left cells of emploe.2's page In namebox type Page.1 + Enter and so on for all emploee's Now u can select with dropdown arrow just to the right of namebox whis page u wana go to if u vant page to scroll, insert this kode in the sheet module Private Sub Worksheet_SelectionChange(ByVal Target As Range) If Target.Column 1 Then Exit Sub On Error GoTo ud x = ActiveCell.Name Application.Goto ActiveCell, True ud: End Sub "cleo" skrev: Excel 2003 - I have a spreadsheet that is divided so that I have one employee schedule per page (not per sheet). I have used page break to split the pages up. Some of the schedules are shorter than a computer screen and some are longer. When I am looking through the schedules, I usually want to be able to pop to the next employee without using my scroll or cursor. Is there a way to just move down one page at a time instead of one computer window at a time? Thank you in advance. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
this is better :-) 1,2,3,4 and so on
Select Upper Left cells of emploe.1's page In namebox type Page.1 + Enter Select Upper Left cells of emploe.2's page In namebox type Page.2 + Enter and so on for all emploee's "excelent" skrev: Select Upper Left cells of emploe.1's page In namebox type Page.1 + Enter Select Upper Left cells of emploe.2's page In namebox type Page.1 + Enter and so on for all emploee's Now u can select with dropdown arrow just to the right of namebox whis page u wana go to if u vant page to scroll, insert this kode in the sheet module Private Sub Worksheet_SelectionChange(ByVal Target As Range) If Target.Column 1 Then Exit Sub On Error GoTo ud x = ActiveCell.Name Application.Goto ActiveCell, True ud: End Sub "cleo" skrev: Excel 2003 - I have a spreadsheet that is divided so that I have one employee schedule per page (not per sheet). I have used page break to split the pages up. Some of the schedules are shorter than a computer screen and some are longer. When I am looking through the schedules, I usually want to be able to pop to the next employee without using my scroll or cursor. Is there a way to just move down one page at a time instead of one computer window at a time? Thank you in advance. |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Instead of a pagebreak, how about leave a blank row between the sections?
CTRL + downarrow will take you to the next blank row. Gord Dibben MS Excel MVP On Fri, 25 Jul 2008 20:37:00 -0700, cleo wrote: Excel 2003 - I have a spreadsheet that is divided so that I have one employee schedule per page (not per sheet). I have used page break to split the pages up. Some of the schedules are shorter than a computer screen and some are longer. When I am looking through the schedules, I usually want to be able to pop to the next employee without using my scroll or cursor. Is there a way to just move down one page at a time instead of one computer window at a time? Thank you in advance. |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thank you both. I'll give these a try.
"Gord Dibben" wrote: Instead of a pagebreak, how about leave a blank row between the sections? CTRL + downarrow will take you to the next blank row. Gord Dibben MS Excel MVP On Fri, 25 Jul 2008 20:37:00 -0700, cleo wrote: Excel 2003 - I have a spreadsheet that is divided so that I have one employee schedule per page (not per sheet). I have used page break to split the pages up. Some of the schedules are shorter than a computer screen and some are longer. When I am looking through the schedules, I usually want to be able to pop to the next employee without using my scroll or cursor. Is there a way to just move down one page at a time instead of one computer window at a time? Thank you in advance. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Format page number in excel footer to start at a specific page # | Excel Discussion (Misc queries) | |||
How do I do page breaks when view menu doesnt page break preview | Excel Discussion (Misc queries) | |||
change page number watermark in page break preview | Excel Discussion (Misc queries) | |||
change and/or remove page number watermark in page break preview | Excel Discussion (Misc queries) | |||
Hiding the page number in page break preview background. | Excel Discussion (Misc queries) |