Can you advise what this error is please Unable to get the find next property

ipbr21054

Well-known Member
Joined
Nov 16, 2010
Messages
5,226
Office Version
  1. 2007
Platform
  1. Windows
I am using this code & on occasion i get this message shown in red below but not sure where or how to fix it.

Please advise some steps i should be looking at Thanks

Rich (BB code):
Private Sub ListBox1_Click()
    Dim CurRow As Long
    
    '~~> Current row selected
    CurRow = ListBox1.ListIndex
    
    '~~> Check if user selected anything
    If CurRow = -1 Then Exit Sub

    Dim ColA As Long, ColB As Long
    Dim SearchFirstValue As String, SearchSecondValue As String
    
    SearchFirstValue = ListBox1.List(CurRow, 0)
    SearchSecondValue = ListBox1.List(CurRow, 1)
        
    Select Case True
        Case Len(Trim(TextBoxName.Text)) <> 0
            ColA = 1
            ColB = 2
        Case Len(Trim(TextBoxReg.Text)) <> 0
            ColA = 2
            ColB = 1
        Case Len(Trim(TextBoxVehicle.Text)) <> 0
            ColA = 4
            ColB = 1
        Case Len(Trim(TextBoxKeyCode.Text)) <> 0
            ColA = 10
            ColB = 2
        Case Len(Trim(TextBoxChassisNumber.Text)) <> 0
            ColA = 12
            ColB = 2
    End Select
    
    Dim ws As Worksheet
    Dim aCell As Range, bCell As Range
    Dim Rw As Long
    Dim NoRecordFound As Boolean: NoRecordFound = True
    
    '~~> Change this to the sheet where data is
    Set ws = ThisWorkbook.Sheets("Database")

    '~~> Search for car in column A because that is where the Customer name is
    Set aCell = ws.Columns(ColA).Find(What:=SearchFirstValue, LookIn:=xlValues, _
        LookAt:=xlWhole, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
        MatchCase:=False, SearchFormat:=False)
    If Not aCell Is Nothing Then
        Set bCell = aCell
        '~~> Check one column next to Col A because that is where the Car registration is
        If ws.Cells(aCell.Row, ColB).Value = SearchSecondValue Then
            NoRecordFound = False
            Rw = aCell.Row
        Else
            Do
                Set aCell = ws.Columns(1).FindNext(After:=aCell)
                If Not aCell Is Nothing Then
                    If aCell.Address = bCell.Address Then Exit Do
                    If ws.Cells(aCell.Row, ColB).Value = SearchSecondValue Then
                        NoRecordFound = False
                        Rw = aCell.Row
                        Exit Do
                    End If
                Else
                    Exit Do
                End If
            Loop
        End If
    End If
    
    If NoRecordFound = True Then
        MsgBox "Not Found"
    Else
        ws.Range("A" & Rw).Select
        Unload Me
    End If
End Sub
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
Try changing your FindNext line to this.
Rich (BB code):
Set aCell = ws.Columns(ColA).FindNext(After:=aCell)
I haven’t tested it but usually your Find and FindNext use the same range and I suspect it’s not happy about the “After:=“ reference not being in the search range.

PS: I have now tested it and that is definitely the case.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,066
Messages
6,122,948
Members
449,095
Latest member
nmaske

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top