Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I used the following code to search for a value(numbers and letters) in
different sheets(12) in a column. What i have found is that it works only for a certain number of rows and i need to search all rows! Any suggestions? Each time im receiving : Run time error5; Invalid procedure call or argument Private Sub find() j = 8 Dim r As Range ActiveWorkbook.Worksheets(j).Activate If TextBox1 = "" Then Else Do Set r = Columns("A").find(What:=TextBox1.Value) With Worksheets(j).Range("a1:a5000") Set c = .find(r, LookIn:=xlValues) If Not c Is Nothing Then firstAddress = c.Address Do Set c = .FindNext(c) TextBox1.Value = c.Offset(, 0) TextBox2.Value = c.Offset(, 8) TextBox3.Value = c.Offset(, 3) TextBox4.Value = c.Offset(, 4) TextBox5.Value = c.Offset(, 1) Response = MsgBox("Is this the information you need?", vbYesNo + vbQuestion) If Response = vbYes Then MsgBox "Press ok when finished" Call clear Exit Sub Else End If Loop While Not c Is Nothing And c.Address < firstAddress End If End With j = j + 1 Loop Until j = 12 End If End Sub thanks |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Two search category & two search terms | Excel Discussion (Misc queries) | |||
Functions (search within search result) reply to this please | Excel Worksheet Functions | |||
How do I search excel spreadsheets using multiple search criteria. | Excel Worksheet Functions | |||
I cant do a search on this forum. Everytime I search, it comes up with zero results | Excel Programming | |||
Create a search Field within a worksheet to search command buttons | Excel Programming |