VBA CountIF syntax error.

jcihak

New Member
Joined
Jun 6, 2018
Messages
8
Hello,


I am trying to fill a cell in with a COUNTIF formula, but it appears to not be formatted correctly. I am sure I have all the necessary quotations. What is keeping this from working? It is saying that there is an unexpected error at the end of the formula with the ")"


Range("E4").Select
ActiveCell.Formula = "=COUNTIF('Prepared Screens'!Q:Q,">14")"
Range("E5").Select
ActiveCell.Formula = "=COUNTIF('Senior Reviewed'!Q:Q,">14")"
Range("E6").Select
ActiveCell.Formula = "=COUNTIF('Manager Reviewed'!Q:Q,">14")"
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
All quotes inside the formula need to be doubled up like
Code:
"=COUNTIF('Prepared Screens'!Q:Q,"">14"")"
 
Upvote 0

Forum statistics

Threads
1,213,567
Messages
6,114,342
Members
448,570
Latest member
rik81h

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