+ Reply to Thread
Results 1 to 2 of 2

Skipping sections of code

  1. #1
    ExcelMonkey
    Guest

    Skipping sections of code

    I have a long run of code (not modular). Is it possible
    to set breaks on a particular section of code (begin and
    end break) so that it will not run when the macro is
    running? Or is the only way to do this on non modular
    code to comment out the sections of code?

    THanks

  2. #2
    K Dales
    Guest

    RE: Skipping sections of code

    It is really poor practice to use, but VBA still includes the good ol' Goto
    statement. The following will only print "Starting...":

    Public Sub GotoTest()

    Debug.print "Starting..."
    Goto SkipEnd
    Debug.print "Ending."

    SkipEnd:

    End Sub

    This would be OK while you test your code, and it does work, but it is not
    good practice to use it normally.

    "ExcelMonkey" wrote:

    > I have a long run of code (not modular). Is it possible
    > to set breaks on a particular section of code (begin and
    > end break) so that it will not run when the macro is
    > running? Or is the only way to do this on non modular
    > code to comment out the sections of code?
    >
    > THanks
    >


+ 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