+ Reply to Thread
Results 1 to 22 of 22

Control cursor direction in highlighted group of cells/Page setup

  1. #1
    George Tung
    Guest

    Control cursor direction in highlighted group of cells/Page setup

    How is the direction of the cursor movement changed in a group of highlighted
    cells when enter is pressed?
    Is it possible to have page setup be applied to all sheets of a workbook?
    Presently I have to setup each page individually.
    Is it possible for the Header to appear on page 1 of a sheet only?
    Presently it appears on every page of a sheet.

  2. #2
    Paul B
    Guest

    Re: Control cursor direction in highlighted group of cells/Page setup

    George,

    "How is the direction of the cursor movement changed "
    tools, options, edit, move selection after enter, change to what you want

    "Is it possible to have page setup be applied to all sheets of a workbook"
    With the sheet that has the correct settings active, right-click on the
    sheet tab and select "Select All Sheets", then use File/Page Setup and
    immediately click OK (don't change anything). Click on some other worksheet
    to get you out of "Group" mode now all sheets have the same page settings!

    "Is it possible for the Header to appear on page 1 of a sheet only"
    here is some code by Ron de Bruin that will do it

    Private Sub Workbook_BeforePrint(Cancel As Boolean)
    'will print the header on 1st page only
    Totpage = Application.ExecuteExcel4Macro("GET.DOCUMENT(50)")
    With ActiveSheet.PageSetup
    .CenterHeader = "Put Your Header Here"
    ActiveWindow.SelectedSheets.PrintOut From:=1, To:=1
    .CenterHeader = ""
    ActiveWindow.SelectedSheets.PrintOut From:=2, To:=Totpage
    End With
    End Sub


    --
    Paul B
    Always backup your data before trying something new
    Please post any response to the newsgroups so others can benefit from it
    Feedback on answers is always appreciated!
    Using Excel 2002 & 2003

    "George Tung" <George Tung@discussions.microsoft.com> wrote in message
    news:C50D8BF8-4FA4-4C7E-942A-9910011E518E@microsoft.com...
    > How is the direction of the cursor movement changed in a group of

    highlighted
    > cells when enter is pressed?
    > Is it possible to have page setup be applied to all sheets of a workbook?
    > Presently I have to setup each page individually.
    > Is it possible for the Header to appear on page 1 of a sheet only?
    > Presently it appears on every page of a sheet.




  3. #3
    Omaheke
    Guest

    RE: Control cursor direction in highlighted group of cells/Page setup



    "George Tung" wrote:

    > How is the direction of the cursor movement changed in a group of highlighted
    > cells when enter is pressed?
    > Is it possible to have page setup be applied to all sheets of a workbook?
    > Presently I have to setup each page individually.
    > Is it possible for the Header to appear on page 1 of a sheet only?
    > Presently it appears on every page of a sheet.


  4. #4
    Gord Dibben
    Guest

    Re: Control cursor direction in highlighted group of cells/Page setup

    On Mon, 13 Jun 2005 04:10:02 -0700, "Omaheke"
    <Omaheke@discussions.microsoft.com> wrote:

    >
    >
    >"George Tung" wrote:
    >
    >> How is the direction of the cursor movement changed in a group of highlighted
    >> cells when enter is pressed?


    Tools>Otions>Edit>Move selection after ENTER.

    For other methods of tabbing through a range see Bob Phillips' site.

    http://www.xldynamic.com/source/xld.xlFAQ0008.html

    >> Is it possible to have page setup be applied to all sheets of a workbook?
    >> Presently I have to setup each page individually.


    Right-click on the active sheet tab and "Select all sheets". Set up the
    active sheet and will be done for all sheets. Note: some setup features are
    not available when in "group" mode.

    DO NOT FORGET to right-click and "ungroup sheets" when done.

    >> Is it possible for the Header to appear on page 1 of a sheet only?
    >> Presently it appears on every page of a sheet.


    Only by using VBA code. See Ron de Bruin's site for this.

    http://www.rondebruin.nl/print.htm#Header


    Gord Dibben Excel MVP


  5. #5
    Omaheke
    Guest

    RE: Control cursor direction in highlighted group of cells/Page setup



    "George Tung" wrote:

    > How is the direction of the cursor movement changed in a group of highlighted
    > cells when enter is pressed?
    > Is it possible to have page setup be applied to all sheets of a workbook?
    > Presently I have to setup each page individually.
    > Is it possible for the Header to appear on page 1 of a sheet only?
    > Presently it appears on every page of a sheet.


  6. #6
    Gord Dibben
    Guest

    Re: Control cursor direction in highlighted group of cells/Page setup

    On Mon, 13 Jun 2005 04:10:02 -0700, "Omaheke"
    <Omaheke@discussions.microsoft.com> wrote:

    >
    >
    >"George Tung" wrote:
    >
    >> How is the direction of the cursor movement changed in a group of highlighted
    >> cells when enter is pressed?


    Tools>Otions>Edit>Move selection after ENTER.

    For other methods of tabbing through a range see Bob Phillips' site.

    http://www.xldynamic.com/source/xld.xlFAQ0008.html

    >> Is it possible to have page setup be applied to all sheets of a workbook?
    >> Presently I have to setup each page individually.


    Right-click on the active sheet tab and "Select all sheets". Set up the
    active sheet and will be done for all sheets. Note: some setup features are
    not available when in "group" mode.

    DO NOT FORGET to right-click and "ungroup sheets" when done.

    >> Is it possible for the Header to appear on page 1 of a sheet only?
    >> Presently it appears on every page of a sheet.


    Only by using VBA code. See Ron de Bruin's site for this.

    http://www.rondebruin.nl/print.htm#Header


    Gord Dibben Excel MVP


  7. #7
    Omaheke
    Guest

    RE: Control cursor direction in highlighted group of cells/Page setup



    "George Tung" wrote:

    > How is the direction of the cursor movement changed in a group of highlighted
    > cells when enter is pressed?
    > Is it possible to have page setup be applied to all sheets of a workbook?
    > Presently I have to setup each page individually.
    > Is it possible for the Header to appear on page 1 of a sheet only?
    > Presently it appears on every page of a sheet.


  8. #8
    Gord Dibben
    Guest

    Re: Control cursor direction in highlighted group of cells/Page setup

    On Mon, 13 Jun 2005 04:10:02 -0700, "Omaheke"
    <Omaheke@discussions.microsoft.com> wrote:

    >
    >
    >"George Tung" wrote:
    >
    >> How is the direction of the cursor movement changed in a group of highlighted
    >> cells when enter is pressed?


    Tools>Otions>Edit>Move selection after ENTER.

    For other methods of tabbing through a range see Bob Phillips' site.

    http://www.xldynamic.com/source/xld.xlFAQ0008.html

    >> Is it possible to have page setup be applied to all sheets of a workbook?
    >> Presently I have to setup each page individually.


    Right-click on the active sheet tab and "Select all sheets". Set up the
    active sheet and will be done for all sheets. Note: some setup features are
    not available when in "group" mode.

    DO NOT FORGET to right-click and "ungroup sheets" when done.

    >> Is it possible for the Header to appear on page 1 of a sheet only?
    >> Presently it appears on every page of a sheet.


    Only by using VBA code. See Ron de Bruin's site for this.

    http://www.rondebruin.nl/print.htm#Header


    Gord Dibben Excel MVP


  9. #9
    Omaheke
    Guest

    RE: Control cursor direction in highlighted group of cells/Page setup



    "George Tung" wrote:

    > How is the direction of the cursor movement changed in a group of highlighted
    > cells when enter is pressed?
    > Is it possible to have page setup be applied to all sheets of a workbook?
    > Presently I have to setup each page individually.
    > Is it possible for the Header to appear on page 1 of a sheet only?
    > Presently it appears on every page of a sheet.


  10. #10
    Gord Dibben
    Guest

    Re: Control cursor direction in highlighted group of cells/Page setup

    On Mon, 13 Jun 2005 04:10:02 -0700, "Omaheke"
    <Omaheke@discussions.microsoft.com> wrote:

    >
    >
    >"George Tung" wrote:
    >
    >> How is the direction of the cursor movement changed in a group of highlighted
    >> cells when enter is pressed?


    Tools>Otions>Edit>Move selection after ENTER.

    For other methods of tabbing through a range see Bob Phillips' site.

    http://www.xldynamic.com/source/xld.xlFAQ0008.html

    >> Is it possible to have page setup be applied to all sheets of a workbook?
    >> Presently I have to setup each page individually.


    Right-click on the active sheet tab and "Select all sheets". Set up the
    active sheet and will be done for all sheets. Note: some setup features are
    not available when in "group" mode.

    DO NOT FORGET to right-click and "ungroup sheets" when done.

    >> Is it possible for the Header to appear on page 1 of a sheet only?
    >> Presently it appears on every page of a sheet.


    Only by using VBA code. See Ron de Bruin's site for this.

    http://www.rondebruin.nl/print.htm#Header


    Gord Dibben Excel MVP


  11. #11
    Omaheke
    Guest

    RE: Control cursor direction in highlighted group of cells/Page setup



    "George Tung" wrote:

    > How is the direction of the cursor movement changed in a group of highlighted
    > cells when enter is pressed?
    > Is it possible to have page setup be applied to all sheets of a workbook?
    > Presently I have to setup each page individually.
    > Is it possible for the Header to appear on page 1 of a sheet only?
    > Presently it appears on every page of a sheet.


  12. #12
    Gord Dibben
    Guest

    Re: Control cursor direction in highlighted group of cells/Page setup

    On Mon, 13 Jun 2005 04:10:02 -0700, "Omaheke"
    <Omaheke@discussions.microsoft.com> wrote:

    >
    >
    >"George Tung" wrote:
    >
    >> How is the direction of the cursor movement changed in a group of highlighted
    >> cells when enter is pressed?


    Tools>Otions>Edit>Move selection after ENTER.

    For other methods of tabbing through a range see Bob Phillips' site.

    http://www.xldynamic.com/source/xld.xlFAQ0008.html

    >> Is it possible to have page setup be applied to all sheets of a workbook?
    >> Presently I have to setup each page individually.


    Right-click on the active sheet tab and "Select all sheets". Set up the
    active sheet and will be done for all sheets. Note: some setup features are
    not available when in "group" mode.

    DO NOT FORGET to right-click and "ungroup sheets" when done.

    >> Is it possible for the Header to appear on page 1 of a sheet only?
    >> Presently it appears on every page of a sheet.


    Only by using VBA code. See Ron de Bruin's site for this.

    http://www.rondebruin.nl/print.htm#Header


    Gord Dibben Excel MVP


  13. #13
    Omaheke
    Guest

    RE: Control cursor direction in highlighted group of cells/Page setup



    "George Tung" wrote:

    > How is the direction of the cursor movement changed in a group of highlighted
    > cells when enter is pressed?
    > Is it possible to have page setup be applied to all sheets of a workbook?
    > Presently I have to setup each page individually.
    > Is it possible for the Header to appear on page 1 of a sheet only?
    > Presently it appears on every page of a sheet.


  14. #14
    Gord Dibben
    Guest

    Re: Control cursor direction in highlighted group of cells/Page setup

    On Mon, 13 Jun 2005 04:10:02 -0700, "Omaheke"
    <Omaheke@discussions.microsoft.com> wrote:

    >
    >
    >"George Tung" wrote:
    >
    >> How is the direction of the cursor movement changed in a group of highlighted
    >> cells when enter is pressed?


    Tools>Otions>Edit>Move selection after ENTER.

    For other methods of tabbing through a range see Bob Phillips' site.

    http://www.xldynamic.com/source/xld.xlFAQ0008.html

    >> Is it possible to have page setup be applied to all sheets of a workbook?
    >> Presently I have to setup each page individually.


    Right-click on the active sheet tab and "Select all sheets". Set up the
    active sheet and will be done for all sheets. Note: some setup features are
    not available when in "group" mode.

    DO NOT FORGET to right-click and "ungroup sheets" when done.

    >> Is it possible for the Header to appear on page 1 of a sheet only?
    >> Presently it appears on every page of a sheet.


    Only by using VBA code. See Ron de Bruin's site for this.

    http://www.rondebruin.nl/print.htm#Header


    Gord Dibben Excel MVP


  15. #15
    Omaheke
    Guest

    RE: Control cursor direction in highlighted group of cells/Page setup



    "George Tung" wrote:

    > How is the direction of the cursor movement changed in a group of highlighted
    > cells when enter is pressed?
    > Is it possible to have page setup be applied to all sheets of a workbook?
    > Presently I have to setup each page individually.
    > Is it possible for the Header to appear on page 1 of a sheet only?
    > Presently it appears on every page of a sheet.


  16. #16
    Gord Dibben
    Guest

    Re: Control cursor direction in highlighted group of cells/Page setup

    On Mon, 13 Jun 2005 04:10:02 -0700, "Omaheke"
    <Omaheke@discussions.microsoft.com> wrote:

    >
    >
    >"George Tung" wrote:
    >
    >> How is the direction of the cursor movement changed in a group of highlighted
    >> cells when enter is pressed?


    Tools>Otions>Edit>Move selection after ENTER.

    For other methods of tabbing through a range see Bob Phillips' site.

    http://www.xldynamic.com/source/xld.xlFAQ0008.html

    >> Is it possible to have page setup be applied to all sheets of a workbook?
    >> Presently I have to setup each page individually.


    Right-click on the active sheet tab and "Select all sheets". Set up the
    active sheet and will be done for all sheets. Note: some setup features are
    not available when in "group" mode.

    DO NOT FORGET to right-click and "ungroup sheets" when done.

    >> Is it possible for the Header to appear on page 1 of a sheet only?
    >> Presently it appears on every page of a sheet.


    Only by using VBA code. See Ron de Bruin's site for this.

    http://www.rondebruin.nl/print.htm#Header


    Gord Dibben Excel MVP


  17. #17
    Gord Dibben
    Guest

    Re: Control cursor direction in highlighted group of cells/Page setup

    On Mon, 13 Jun 2005 04:10:02 -0700, "Omaheke"
    <Omaheke@discussions.microsoft.com> wrote:

    >
    >
    >"George Tung" wrote:
    >
    >> How is the direction of the cursor movement changed in a group of highlighted
    >> cells when enter is pressed?


    Tools>Otions>Edit>Move selection after ENTER.

    For other methods of tabbing through a range see Bob Phillips' site.

    http://www.xldynamic.com/source/xld.xlFAQ0008.html

    >> Is it possible to have page setup be applied to all sheets of a workbook?
    >> Presently I have to setup each page individually.


    Right-click on the active sheet tab and "Select all sheets". Set up the
    active sheet and will be done for all sheets. Note: some setup features are
    not available when in "group" mode.

    DO NOT FORGET to right-click and "ungroup sheets" when done.

    >> Is it possible for the Header to appear on page 1 of a sheet only?
    >> Presently it appears on every page of a sheet.


    Only by using VBA code. See Ron de Bruin's site for this.

    http://www.rondebruin.nl/print.htm#Header


    Gord Dibben Excel MVP


  18. #18
    Omaheke
    Guest

    RE: Control cursor direction in highlighted group of cells/Page setup



    "George Tung" wrote:

    > How is the direction of the cursor movement changed in a group of highlighted
    > cells when enter is pressed?
    > Is it possible to have page setup be applied to all sheets of a workbook?
    > Presently I have to setup each page individually.
    > Is it possible for the Header to appear on page 1 of a sheet only?
    > Presently it appears on every page of a sheet.


  19. #19
    Omaheke
    Guest

    RE: Control cursor direction in highlighted group of cells/Page setup



    "George Tung" wrote:

    > How is the direction of the cursor movement changed in a group of highlighted
    > cells when enter is pressed?
    > Is it possible to have page setup be applied to all sheets of a workbook?
    > Presently I have to setup each page individually.
    > Is it possible for the Header to appear on page 1 of a sheet only?
    > Presently it appears on every page of a sheet.


  20. #20
    Gord Dibben
    Guest

    Re: Control cursor direction in highlighted group of cells/Page setup

    On Mon, 13 Jun 2005 04:10:02 -0700, "Omaheke"
    <Omaheke@discussions.microsoft.com> wrote:

    >
    >
    >"George Tung" wrote:
    >
    >> How is the direction of the cursor movement changed in a group of highlighted
    >> cells when enter is pressed?


    Tools>Otions>Edit>Move selection after ENTER.

    For other methods of tabbing through a range see Bob Phillips' site.

    http://www.xldynamic.com/source/xld.xlFAQ0008.html

    >> Is it possible to have page setup be applied to all sheets of a workbook?
    >> Presently I have to setup each page individually.


    Right-click on the active sheet tab and "Select all sheets". Set up the
    active sheet and will be done for all sheets. Note: some setup features are
    not available when in "group" mode.

    DO NOT FORGET to right-click and "ungroup sheets" when done.

    >> Is it possible for the Header to appear on page 1 of a sheet only?
    >> Presently it appears on every page of a sheet.


    Only by using VBA code. See Ron de Bruin's site for this.

    http://www.rondebruin.nl/print.htm#Header


    Gord Dibben Excel MVP


  21. #21
    Omaheke
    Guest

    RE: Control cursor direction in highlighted group of cells/Page setup



    "George Tung" wrote:

    > How is the direction of the cursor movement changed in a group of highlighted
    > cells when enter is pressed?
    > Is it possible to have page setup be applied to all sheets of a workbook?
    > Presently I have to setup each page individually.
    > Is it possible for the Header to appear on page 1 of a sheet only?
    > Presently it appears on every page of a sheet.


  22. #22
    Gord Dibben
    Guest

    Re: Control cursor direction in highlighted group of cells/Page setup

    On Mon, 13 Jun 2005 04:10:02 -0700, "Omaheke"
    <Omaheke@discussions.microsoft.com> wrote:

    >
    >
    >"George Tung" wrote:
    >
    >> How is the direction of the cursor movement changed in a group of highlighted
    >> cells when enter is pressed?


    Tools>Otions>Edit>Move selection after ENTER.

    For other methods of tabbing through a range see Bob Phillips' site.

    http://www.xldynamic.com/source/xld.xlFAQ0008.html

    >> Is it possible to have page setup be applied to all sheets of a workbook?
    >> Presently I have to setup each page individually.


    Right-click on the active sheet tab and "Select all sheets". Set up the
    active sheet and will be done for all sheets. Note: some setup features are
    not available when in "group" mode.

    DO NOT FORGET to right-click and "ungroup sheets" when done.

    >> Is it possible for the Header to appear on page 1 of a sheet only?
    >> Presently it appears on every page of a sheet.


    Only by using VBA code. See Ron de Bruin's site for this.

    http://www.rondebruin.nl/print.htm#Header


    Gord Dibben Excel MVP


+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1