Search code - See any issues?

erutherford

Active Member
Joined
Dec 19, 2016
Messages
449
found this piece code and its exactly as presented. It works in the provider demo, but not in my new workbook.

Error occurs at the bold red print (object define error)

Rich (BB code):
Sub search_and_extract_singlecriteria()
Dim datasheet As Worksheet
Dim reportsheet As Worksheet
Dim typename As String
Dim finalrow As Integer
Dim i As Integer

'set variables
Set datasheet = Sheet1
Set reportsheet = Sheet2
typename = reportsheet.Range("B2").Value

'clear old data
reportsheet.Range("A5:L100").ClearContents

'goto datasheet and start searching and copying
datasheet.Select
finalrow = Cells(Rows.Count, 1).End(x1Up).Row

For i = 2 To finalrow
    If Cells(i, 2) = typename Then
    Range(Cells(i, 1), Cells(i, 12)).Copy
    reportsheet.Select
    Range("A200").End(x1Up).Offset(1, 0).PasteSpecial xlPasteFormulasAndNumberFormats
    datasheet.Select
    End If
Next i

reportsheet.Select

Range("B2").Select

End Sub
 
It is suppose to find the first blank row then paste
Do you mean the first blank row or the first blank row after your data (2 different things), if you mean the latter then (and you didn't answer if it is only above A25 and the below assumes not)....

Just so I understand where you are what happens if you change

Code:
datasheet.Select
finalrow = Cells(Rows.Count, 1).End(xlUp).Row

For i = 2 To finalrow
    If Cells(i, 2) = typename Then
    Range(Cells(i, 1), Cells(i, 9)).Copy
    reportsheet.Select
    Range("A25").End(xlUp).Offset(1, 0).PasteSpecial Paste:=xlPasteValuesAndNumberFormats
    datasheet.Select
    End If
Next i

reportsheet.Select

Range("B2").Select
to
Code:
    With datasheet
        finalrow = .Cells(Rows.Count, 1).End(xlUp).Row

        For i = 2 To finalrow
            If .Cells(i, 2) = typename Then
                .Range(.Cells(i, 1), .Cells(i, 9)).Copy
                reportsheet.Cells(Rows.Count, "A").End(xlUp).Offset(1, 0).PasteSpecial Paste:=xlPasteValuesAndNumberFormats
            End If
        Next i
    End With
    Application.Goto reportsheet.Range("B2"), True

and you haven't answered Fluff's question
Fluff
Re: Search code - See any issues?

When you step through the code what is it doing?

Btw, the video isn't much use to us, a link to a free file sharing site like www.box.com or www.dropbox.com where you have uploaded a copy of a de-sensitised version of your file might be :biggrin:
 
Last edited:
Upvote 0

Excel Facts

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce
Mark - ok that works.

What would I change if I wanted the paste to start at A5?

What was the issue with the original code (just for some knowledge base)?

Fluff - The code would not return the query results. It looks like Mark made the code simpler.

thanks to both of you for the time!
 
Upvote 0
Code:
    With datasheet
        finalrow = .Cells(Rows.Count, 1).End(xlUp).Row

        For i = 2 To finalrow
            If .Cells(i, 2) = typename Then
                .Range(.Cells(i, 1), .Cells(i, 9)).Copy
                If reportsheet.Cells(Rows.Count, "A").End(xlUp).End(xlUp).Row < 4 Then
                    reportsheet.Cells(5, "A").PasteSpecial Paste:=xlPasteValuesAndNumberFormats
                Else
                    reportsheet.Cells(Rows.Count, "A").End(xlUp).End(xlUp).Offset(1, 0).PasteSpecial Paste:=xlPasteValuesAndNumberFormats
                End If
            End If
        Next i
    End With

What was the issue with the original code (just for some knowledge base)?
Can't guess I am afraid unless your use of A25 was incorrect.
 
Upvote 0
Mark - Well your version is cleaner, more direct it seems, so I'll go with it. But I'll see if I can figure out what the problem is with the other code, now that I have a working sample.

Thanks again
 
Upvote 0
Mark, I for got to ask what if I have headers on the reportsheet. What can be done to keep them from being "cleared"?
 
Upvote 0
Mark, I for got to ask what if I have headers on the reportsheet. What can be done to keep them from being "cleared"?

:confused: Nothing in the code I posted clears anything (and the last code that I posted can paste above row 5). Please clarify your question.
 
Upvote 0

Forum statistics

Threads
1,216,217
Messages
6,129,567
Members
449,517
Latest member
Lsmich

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