Link to home
Start Free TrialLog in
Avatar of davidascott
davidascott

asked on

Formula Help With Countif

I have the following formuila in a spreadsheet:

COUNTIF(Bills_New!$M$8:$BQ$20,"<>"&"")

Am I right that it is saying that it will count anythng in the range if the cell is not blank?  I am not sure what <> actually says.  Please explain.
Thanks, David
ASKER CERTIFIED SOLUTION
Avatar of Patrick Matthews
Patrick Matthews
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
It counts any cell that has a value other than "".
Correction - any cell other than a blank cell, as you originally thought - it will ignore cells with "" as the result of a formula.
You might also consider using COUNTA:

COUNTA(Bills_New!$M$8:$BQ$20)