Closed Thread
Results 1 to 2 of 2

Macro Hangs. Help Debug? :)

Hybrid View

  1. #1
    Registered User
    Join Date
    08-05-2010
    Location
    USA
    MS-Off Ver
    Excel 2007
    Posts
    36

    Smile Macro Hangs. Help Debug? :)

    Hello all,

    The following macro is hanging on me and for the life of me I can't find the culprit. Any help would be phenomenal.

    Thanks!


    Sub FindPalletPricing()
        
        Dim x As Integer
        
        x = 0
        
        Do While (x < 30000)
            If Left(Cells(8 + x, 4), 4) = "SAVE" Then
                If Cells(7 + x, 3).Font.Bold = True Then
                    Do While Not (Cells(9 + x, 1) = "")
                        Cells(9 + x, 2) = Cells(9 + x, 1)
                        x = x + 1
                    Loop
                Else:
                    Cells(8 + x, 2) = Cells(7 + x, 1)
                    x = x + 1
                End If
            Else:
                x = x + 1
            End If
        Loop
    
    End Sub

  2. #2
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: Macro Hangs. Help Debug? :)

    Please go back and look at your prior thread where you were given an answer to the same question.

    You might also read http://www.cpearson.com/excel/Debug.htm

    If neither of those solves your problem, please take a few minutes to read the forum rules and then start a new thread with an appropriate title.
    Entia non sunt multiplicanda sine necessitate

Closed 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