Sign in to join the conversation:
how can I exclude N/A on the count if N/A is selected
Formula:
=COUNTIF(CHILDREN(), "Done") + "/" + COUNT(CHILDREN()) + " (" + ROUND(COUNTIF(CHILDREN(), "Done") / COUNT(CHILDREN()) * 100) + "%)"
Change both of these portions
COUNT(CHILDREN())
to say
COUNTIFS(CHILDREN(), NOT(@cell = "N/A"))
Perfect!
it worked!
Thank you Paul
Here is the new formula:
=COUNTIF(CHILDREN(), "Done") + "/" + COUNTIFS(CHILDREN(), NOT(@cell = "N/A")) + " (" + ROUND(COUNTIF(CHILDREN(), "Done") / COUNTIFS(CHILDREN(), NOT(@cell = "N/A")) * 100) + "%)"
Cheers
Excellent! Happy to help.
Hey, I am using the below formula→ =INDEX({Source_Sheet_Entire_Table}, MATCH([Unique ID]@row , {Source_Sheet_ID_Column}, 0), 1) Although the answer should be "Project details" mentioned in Column 1, it says #No Match. What am I doing wrong?
How can I delete old sheets I no longer use from my account?
I'm trying to display a task progress chart showing "complete", "late", and "not complete" in my dashboard and for some reason the chart will display as a column chart but it won't display as a donut chart even though I'm referencing the same report. I'd prefer to display as a donut chart as I think it looks better and is…