Help in selecting and copying filtered data (Could not select single entry)

Gaurangg

Board Regular
Joined
Aug 6, 2015
Messages
134
Hi Friends,

I have build a code to select the filtered data to copy and paste into another worksheet. However there is an issue with it. When there is only one entry found from filtered data, it throws an error coz it selects the data till last row of the sheet. Kindly help me to correct the code so I can select the data irrespective of single entry or multiple entry.

Code:
Sheet2.Select
    If Sheet2.Range("P1").Value = 0 Then
    MsgBox "There is no unique data found from this file." & vbNewLine & vbNewLine & "Please check the file you have selected." & vbNewLine & vbNewLine & "Thank You", vbOKOnly + vbInformation, "New Request Tool"
    
    Sheet2.Range("A:Z").Select
    Selection.EntireColumn.Delete
    Range("A1").Select
    Sheet2.Select
    Sheet2.Protect Password:="Paasword1"
    Sheet3.Select
    Sheet3.Protect Password:="Paasword2"
    Sheet1.Select
    Range("A50").Select
    
    Sheet2.Visible = xlSheetVeryHidden
    Sheet3.Visible = xlSheetVeryHidden
    Sheet4.Visible = xlSheetVeryHidden
    
    ActiveWorkbook.Save
        
    Exit Sub
    Else
    Sheet2.Select
    Range("A1:O1").AutoFilter
    NewRng = Sheet2.Range("B1048576").End(xlUp).Row
    Range("O1").Select
    Range("$A$1:$O" & NewRng).AutoFilter Field:=15, Criteria1:="True"
    Range("M1").Select
    Range("$A$1:$O" & NewRng).AutoFilter Field:=13, Criteria1:="15"
    Range("K1").Select
    Range("$A$1:$O" & NewRng).AutoFilter Field:=11, Criteria1:="No"
    
    Range("A1:L" & NewRng).Select
    ActiveCell.Offset(1, 0).Select
    Do Until ActiveCell.EntireRow.Hidden = False
        ActiveCell.Offset(1, 0).Select
    Loop
    Range(Selection, Selection.End(xlDown)).Select
    Range(Selection, Selection.End(xlToRight)).Select
    
    Selection.Copy
    
'Here where the data to be pasted
    Sheet3.Select
    LSTRw = Sheet3.Range("A1048576").End(xlUp).Row
    Range("A" & Cells.Rows.Count).End(xlUp).Offset(1, 0).Select
    Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
        :=False, Transpose:=False
 

Excel Facts

Pivot Table Drill Down
Double-click any number in a pivot table to create a new report showing all detail rows that make up that number
Try this:

Code:
Sub test1()
    Sheet2.Select
    If Sheet2.Range("P1").Value = 0 Then
        MsgBox "There is no unique data found from this file." & vbNewLine & vbNewLine & "Please check the file you have selected." & vbNewLine & vbNewLine & "Thank You", vbOKOnly + vbInformation, "New Request Tool"
        
        Sheet2.Range("A:Z").Select
        Selection.EntireColumn.Delete
        Range("A1").Select
        Sheet2.Select
        Sheet2.Protect Password:="Paasword1"
        Sheet3.Select
        Sheet3.Protect Password:="Paasword2"
        sheet1.Select
        Range("A50").Select
        
        Sheet2.Visible = xlSheetVeryHidden
        Sheet3.Visible = xlSheetVeryHidden
        sheet4.Visible = xlSheetVeryHidden
        
        ActiveWorkbook.Save
        
        Exit Sub
    Else
        'Sheet2.Select
        Range("A1:O1").AutoFilter
        NewRng = Sheet2.Range("B1048576").End(xlUp).Row
        Range("$A$1:$O" & NewRng).AutoFilter Field:=15, Criteria1:="True"
        Range("$A$1:$O" & NewRng).AutoFilter Field:=13, Criteria1:="15"
        Range("$A$1:$O" & NewRng).AutoFilter Field:=11, Criteria1:="No"
        
        'Columns to copy
        Range("A1:O" & NewRng).Copy
        
        'Here where the data to be pasted
        Sheet3.Select
        LSTRw = Sheet3.Range("A1048576").End(xlUp).Row
        Range("A" & Cells.Rows.Count).End(xlUp).Offset(1, 0).PasteSpecial Paste:=xlPasteValues
    End If
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,858
Messages
6,121,956
Members
449,057
Latest member
FreeCricketId

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