+ Reply to Thread
Results 1 to 4 of 4

Pause a macro after each line, run next after hitting spacebar?

Hybrid View

  1. #1
    manxman
    Guest

    Pause a macro after each line, run next after hitting spacebar?

    I want the following macro to stop after each line and wait for me to hit the
    spacebar before entering the next line. What code do I need to add?

    Sub Optimize()
    '
    ' Optimize Macro
    ' Run through series of percentages
    '
    ' Keyboard Shortcut: Ctrl+Shift+O
    '
    Application.Run "PERSONAL.XLS!MoveCursorNot"
    ActiveCell.FormulaR1C1 = "0.0001"
    ActiveCell.FormulaR1C1 = "0.0002"
    ActiveCell.FormulaR1C1 = "0.0003"
    ActiveCell.FormulaR1C1 = "0.0004"
    ActiveCell.FormulaR1C1 = "0.0005"
    End Sub

  2. #2
    Chip Pearson
    Guest

    Re: Pause a macro after each line, run next after hitting spacebar?

    There is no way to pause a macro and wait for a keypress. The
    only thing you can do is display a MsgBox after each line of code
    and let the user click OK.


    --
    Cordially,
    Chip Pearson
    Microsoft MVP - Excel
    Pearson Software Consulting, LLC
    www.cpearson.com


    "manxman" <manxman@discussions.microsoft.com> wrote in message
    news:8C9AF189-26A7-43C7-92C3-E439A3F5B641@microsoft.com...
    >I want the following macro to stop after each line and wait for
    >me to hit the
    > spacebar before entering the next line. What code do I need to
    > add?
    >
    > Sub Optimize()
    > '
    > ' Optimize Macro
    > ' Run through series of percentages
    > '
    > ' Keyboard Shortcut: Ctrl+Shift+O
    > '
    > Application.Run "PERSONAL.XLS!MoveCursorNot"
    > ActiveCell.FormulaR1C1 = "0.0001"
    > ActiveCell.FormulaR1C1 = "0.0002"
    > ActiveCell.FormulaR1C1 = "0.0003"
    > ActiveCell.FormulaR1C1 = "0.0004"
    > ActiveCell.FormulaR1C1 = "0.0005"
    > End Sub




  3. #3
    Andrew Taylor
    Guest

    Re: Pause a macro after each line, run next after hitting spacebar?

    Of course, hitting the space bar clicks the OK button,
    so this does do what the OP wants

    Chip Pearson wrote:
    > There is no way to pause a macro and wait for a keypress. The
    > only thing you can do is display a MsgBox after each line of code
    > and let the user click OK.
    >
    >
    > --
    > Cordially,
    > Chip Pearson
    > Microsoft MVP - Excel
    > Pearson Software Consulting, LLC
    > www.cpearson.com
    >
    >
    > "manxman" <manxman@discussions.microsoft.com> wrote in message
    > news:8C9AF189-26A7-43C7-92C3-E439A3F5B641@microsoft.com...
    > >I want the following macro to stop after each line and wait for
    > >me to hit the
    > > spacebar before entering the next line. What code do I need to
    > > add?
    > >
    > > Sub Optimize()
    > > '
    > > ' Optimize Macro
    > > ' Run through series of percentages
    > > '
    > > ' Keyboard Shortcut: Ctrl+Shift+O
    > > '
    > > Application.Run "PERSONAL.XLS!MoveCursorNot"
    > > ActiveCell.FormulaR1C1 = "0.0001"
    > > ActiveCell.FormulaR1C1 = "0.0002"
    > > ActiveCell.FormulaR1C1 = "0.0003"
    > > ActiveCell.FormulaR1C1 = "0.0004"
    > > ActiveCell.FormulaR1C1 = "0.0005"
    > > End Sub



  4. #4
    manxman
    Guest

    Re: Pause a macro after each line, run next after hitting spacebar

    That sounds like it would be fine. How do you suggest I proceed to make this
    as simple as possible? Thanks very much for your help.

    "Chip Pearson" wrote:

    > There is no way to pause a macro and wait for a keypress. The
    > only thing you can do is display a MsgBox after each line of code
    > and let the user click OK.
    >
    >
    > --
    > Cordially,
    > Chip Pearson
    > Microsoft MVP - Excel
    > Pearson Software Consulting, LLC
    > www.cpearson.com
    >
    >
    > "manxman" <manxman@discussions.microsoft.com> wrote in message
    > news:8C9AF189-26A7-43C7-92C3-E439A3F5B641@microsoft.com...
    > >I want the following macro to stop after each line and wait for
    > >me to hit the
    > > spacebar before entering the next line. What code do I need to
    > > add?
    > >
    > > Sub Optimize()
    > > '
    > > ' Optimize Macro
    > > ' Run through series of percentages
    > > '
    > > ' Keyboard Shortcut: Ctrl+Shift+O
    > > '
    > > Application.Run "PERSONAL.XLS!MoveCursorNot"
    > > ActiveCell.FormulaR1C1 = "0.0001"
    > > ActiveCell.FormulaR1C1 = "0.0002"
    > > ActiveCell.FormulaR1C1 = "0.0003"
    > > ActiveCell.FormulaR1C1 = "0.0004"
    > > ActiveCell.FormulaR1C1 = "0.0005"
    > > End Sub

    >
    >
    >


+ 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