WorksheetFunction CountIf

ItalianPlatinum

Well-known Member
Joined
Mar 23, 2017
Messages
893
Office Version
  1. 365
  2. 2019
Platform
  1. Windows
I am looking to evaluate all of column AQ starting on row 11 until the last row if there are any Yes. I want to skip a section of code if there are no "Yes" so trying to do this but getting object variable error. What part am I missing?

VBA Code:
'copy formulas down
With Sheets("ALL")
lr = .Cells(rows.count, "A").End(xlUp).row
    .Range("AN11:AN" & lr).Formula = "=ROUND(H11-SUM(I11:K11),2)"
    .Range("AO11:AO" & lr).Formula = "=SUM(M11:P11)"
    .Range("AP11:AP" & lr).Formula = "=SUM(Q11:AL11)"
    .Range("AQ11:AQ" & lr).Formula = "=IF(AND(AN11=0,AO11=0,AP11=0),""No"",""Yes"")"
    .Range("AN11:AQ" & lr).Value = .Range("AN11:AQ" & lr).Value
Set rng = .Range("AQ11:AQ" & lr)
End With

'Evaluate if any YES if exist then transfer data over
If Application.WorksheetFunction.CountIf(Range(rng), "Yes") > 0 Then

'Rest OF CODE here
 

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
all set self solved. stupid typo

VBA Code:
If Application.WorksheetFunction.countif(rng, "Yes") > 0 Then
 
Upvote 0
Solution

Forum statistics

Threads
1,225,743
Messages
6,186,778
Members
453,371
Latest member
HMX180

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