Forum Discussion
#spill Error
- Nov 10, 2021so maybe the original formula you wanted was:
=ROWS(Colorado)-COUNTA(Colorado[Description]) & " REG NEEDED"
or could be:
=COUNTBLANK(Colorado[Description]) & " REG NEEDED"
=COUNTBLANK($C$4:$C$31)& " REG NEEDED"
- mtarlerNov 10, 2021Silver Contributorso maybe the original formula you wanted was:
=ROWS(Colorado)-COUNTA(Colorado[Description]) & " REG NEEDED"
or could be:
=COUNTBLANK(Colorado[Description]) & " REG NEEDED" - SergeiBaklanNov 10, 2021Diamond Contributor
Sorry, didn't catch, why do you need ROWS() here?
- NewelleNielsen8821Nov 10, 2021Copper Contributor
well instead of have the C2:C27 I wanted to use something like this
=COUNTBLANK(ROWS(Colorado[Regulatory Reference])) & " REG NEEDED"
but that isn't working I tried IS BLANK with the same and it doesn't work either.
I just wanted to make so I didn't have to check each tab for the number of rows and update it all manually as noted in red below
=COUNTIF(G4:G31,"TBD") & " TBD RESOLUTION NEEDED"- SergeiBaklanNov 11, 2021Diamond Contributor
Sorry, I didn't catch. If to count only blank cells
=COUNTBLANK(Colorado[Regulatory Reference]) & " REG NEEDED"
If only you have really blank cells, not values with empty strings returned by formulae.
COUNTIF() shall work, but that's another question. Perhaps you may illustrate with sample file what exactly you'd like to calculate?