+ Reply to Thread
Results 1 to 3 of 3

problem with "Next Cell"

  1. #1
    Registered User
    Join Date
    10-06-2006
    Posts
    16

    problem with "Next Cell"

    Can anyone tell me what I'm missing here.
    This code is "Supposed" to put a part number into the first blank cell in a range of cells.

    If the cell is not blank, go to the next blank cell and put the part Number there.

    The problem is that when it gets to the "Next Cell" part,
    I get an error "Block if without an end if. But I need to index to the next cell if the selected cell isn't blank.

    For Each cell In BlankCells
    If cell.Value = "" Then
    Call Parts
    cell.Value = PartNum
    Exit Function
    ElseIf cell.Value <> "" Then
    Next cell
    cell.Value = PartNum
    End If
    Next Cell

  2. #2
    Forum Guru
    Join Date
    03-02-2006
    Location
    Los Angeles, Ca
    MS-Off Ver
    WinXP/MSO2007;Win10/MSO2016
    Posts
    12,937
    All you need is the first if because it automatically drops to the next cell if the current cell is not blank:
    Please Login or Register  to view this content.
    Ben Van Johnson

  3. #3
    Valued Forum Contributor
    Join Date
    06-16-2006
    Location
    Sydney, Australia
    MS-Off Ver
    2013 64bit
    Posts
    1,394
    The post above is correct, however leave your exit function as per our previous discussion

+ 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