Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default Navigation with arrows eg next/prev pge in Excel?

I use multiple sheets and hide the tabs, but would appreciate being able move
back and fore between them - as is possible in Access.
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 695
Default Navigation with arrows eg next/prev pge in Excel?

CTRL+PG.DOWN/UP

"Harris John" skrev:

I use multiple sheets and hide the tabs, but would appreciate being able move
back and fore between them - as is possible in Access.

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4
Default Navigation with arrows eg next/prev pge in Excel?

Thanks, new tip which I did not know, but I am lazy and want an arrow
on-screen to click on for either back one sheet/forward one sheet.

"excelent" wrote:

CTRL+PG.DOWN/UP

"Harris John" skrev:

I use multiple sheets and hide the tabs, but would appreciate being able move
back and fore between them - as is possible in Access.

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default Navigation with arrows eg next/prev pge in Excel?

Try the macro recorder whilst doing the CTRL + page up or down.

You will get this..................

Sub Macro1()
ActiveSheet.Next.Select
End Sub

or this...................

Sub Macro2()
ActiveSheet.Previous.Select
End Sub

Assign each to a button.


Gord Dibben MS Excel MVP


On Sat, 27 Oct 2007 11:49:00 -0700, Harris John
wrote:

Thanks, new tip which I did not know, but I am lazy and want an arrow
on-screen to click on for either back one sheet/forward one sheet.

"excelent" wrote:

CTRL+PG.DOWN/UP

"Harris John" skrev:

I use multiple sheets and hide the tabs, but would appreciate being able move
back and fore between them - as is possible in Access.


  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 695
Default Navigation with arrows eg next/prev pge in Excel?

Well then use these 2 lines in 2 macro
move back:
ActiveSheet.Previous.Select
forward:
ActiveSheet.Next.Select


make 2 arrows from drawing toolbox on all sheets hmm :-)
or
bottuns from Formulatoolbox/Controtoolbox
or
put 2 macrobottons on menuline


or
insert a doubleclick events code in ThisWorkbook

"Harris John" skrev:

Thanks, new tip which I did not know, but I am lazy and want an arrow
on-screen to click on for either back one sheet/forward one sheet.

"excelent" wrote:

CTRL+PG.DOWN/UP

"Harris John" skrev:

I use multiple sheets and hide the tabs, but would appreciate being able move
back and fore between them - as is possible in Access.



  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,316
Default Navigation with arrows eg next/prev pge in Excel?

To the left of the the first visible toolbar are 4 scroll buttons First
Sheet, Previous Sheet, Next Sheet and Last Sheet. These 4 button only move
the the view and not the focus, so once you get to the sheet you want to work
on you will need to click on a cell in that worksheet to move focus to your
select sheet.
--
Kevin Backmann


"Harris John" wrote:

Thanks, new tip which I did not know, but I am lazy and want an arrow
on-screen to click on for either back one sheet/forward one sheet.

"excelent" wrote:

CTRL+PG.DOWN/UP

"Harris John" skrev:

I use multiple sheets and hide the tabs, but would appreciate being able move
back and fore between them - as is possible in Access.

  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4
Default Navigation with arrows eg next/prev pge in Excel?

Many thanks Kevin B yes I do use these, however I want yo hide the Tabs, so
this will not work in this instance. Thanks again. It has pointed me in the
right direction though!

Harris John
"Kevin B" wrote:

To the left of the the first visible toolbar are 4 scroll buttons First
Sheet, Previous Sheet, Next Sheet and Last Sheet. These 4 button only move
the the view and not the focus, so once you get to the sheet you want to work
on you will need to click on a cell in that worksheet to move focus to your
select sheet.
--
Kevin Backmann


"Harris John" wrote:

Thanks, new tip which I did not know, but I am lazy and want an arrow
on-screen to click on for either back one sheet/forward one sheet.

"excelent" wrote:

CTRL+PG.DOWN/UP

"Harris John" skrev:

I use multiple sheets and hide the tabs, but would appreciate being able move
back and fore between them - as is possible in Access.

  #8   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4
Default Navigation with arrows eg next/prev pge in Excel?

Gord, this got it in one, just what I was looking for. Many thanks.

Harris John

"Gord Dibben" wrote:

Try the macro recorder whilst doing the CTRL + page up or down.

You will get this..................

Sub Macro1()
ActiveSheet.Next.Select
End Sub

or this...................

Sub Macro2()
ActiveSheet.Previous.Select
End Sub

Assign each to a button.


Gord Dibben MS Excel MVP


On Sat, 27 Oct 2007 11:49:00 -0700, Harris John
wrote:

Thanks, new tip which I did not know, but I am lazy and want an arrow
on-screen to click on for either back one sheet/forward one sheet.

"excelent" wrote:

CTRL+PG.DOWN/UP

"Harris John" skrev:

I use multiple sheets and hide the tabs, but would appreciate being able move
back and fore between them - as is possible in Access.



  #9   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4
Default Navigation with arrows eg next/prev pge in Excel?

Great, thanks. This is what I want. Have sussed it out from another response.

Can you expand on the double click events code, and buttons on the menuline
- I have never done this?

Harris John

"excelent" wrote:

Well then use these 2 lines in 2 macro
move back:
ActiveSheet.Previous.Select
forward:
ActiveSheet.Next.Select


make 2 arrows from drawing toolbox on all sheets hmm :-)
or
bottuns from Formulatoolbox/Controtoolbox
or
put 2 macrobottons on menuline


or
insert a doubleclick events code in ThisWorkbook

"Harris John" skrev:

Thanks, new tip which I did not know, but I am lazy and want an arrow
on-screen to click on for either back one sheet/forward one sheet.

"excelent" wrote:

CTRL+PG.DOWN/UP

"Harris John" skrev:

I use multiple sheets and hide the tabs, but would appreciate being able move
back and fore between them - as is possible in Access.

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Regarding Prev. Post. Sam Excel Discussion (Misc queries) 1 December 24th 06 08:17 AM
How can I set the tab to improve navigation in Excel? stefanie Setting up and Configuration of Excel 1 November 9th 05 08:32 PM
Navigation in Excel Geor New Users to Excel 2 August 8th 05 11:02 PM
Excel Navigation spartanmba Excel Discussion (Misc queries) 1 February 17th 05 09:54 PM
Excel 2003 navigation Thom Setting up and Configuration of Excel 1 November 30th 04 06:38 PM


All times are GMT +1. The time now is 04:42 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"