find values under 20% across worksheets and list said worksheets

adamprocter

Board Regular
Joined
Apr 13, 2015
Messages
53
I would like my Macro to go into all works sheets and look at the last row of I matching todays date and if this value is under 20% then to paste the name of that worksheet back into the master worksheet allowing a quick overview of under performing data.

I think I have got the selection process right but am not sure on pasting back into main worksheet and at the moment I get undefined error for .Rows ?!
Any help much appriciated

Code:
Sub PerformanceMacro()
 
    
    Dim SheetName As Worksheet
    Dim ws1 As Worksheet
    Dim rcMatch As Variant
    Dim LastRow As Long
    
    Set ws1 = ThisWorkbook.Worksheets("Execution Screen (login)")
    
    For Each SheetName In Worksheets
             
                LastRow = .Cells(.Rows.Count, "I").End(xlUp).Row
                          rcMatch = Application.Match(CLng(Date), .Range("A1:A" & LastRow), 0)
                If IsNumeric(rcMatch) < "20.00" Then
                    'Paste into ws1 worksheet into Col o rows 6/8/10/12 forever the name of worksheert any that are under 20%
                End If
           
          
    Next SheetName

End Sub
 

Excel Facts

What is =ROMAN(40) in Excel?
The Roman numeral for 40 is XL. Bill "MrExcel" Jelen's 40th book was called MrExcel XL.
Does this work for you... (Clear your errors)

Code:
Sub PerformanceMacro()
 
    
    Dim SheetName As Worksheet
    Dim ws1 As Worksheet
    Dim rcMatch As Variant
    Dim LastRow As Long
    
    Set ws1 = ThisWorkbook.Worksheets("Execution Screen (login)")
    
    For Each SheetName In Worksheets
                With SheetName
                LastRow = .Cells(.Rows.Count, "I").End(xlUp).Row
                          rcMatch = Application.Match(CLng(Date), .Range("A1:A" & LastRow), 0)
                End With
                If IsNumeric(rcMatch) < "20.00" Then
                    'Paste into ws1 worksheet into Col o rows 6/8/10/12 forever the name of worksheert any that are under 20%
                End If
           
          
    Next SheetName

End Sub
 
Upvote 0

Forum statistics

Threads
1,214,911
Messages
6,122,198
Members
449,072
Latest member
DW Draft

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