Send a notification when all rows in a sheet are marked as complete
JSpears
✭✭✭✭
I'm trying to figure out a way for a notification to be triggered when all rows in a sheet are marked as complete.
I've tried to create a new column that would have the first cell with a formula that will
Enter a 1 if the count of the Status column with Blue equals the count of items in the primary column.
So something like this: =if((COUNTIF(status:status, "blue")=(COUNTIF(path:path, <>"")),1,0)
Any suggestions?
Tags:
Best Answer
-
Try =IF(COUNTIF(Status:Status, "Blue") = (COUNT(Path:Path)), 1, 0)
Answers
-
Try =IF(COUNTIF(Status:Status, "Blue") = (COUNT(Path:Path)), 1, 0)
-
Thank you!!! That worked.
Help Article Resources
Categories
Want to practice working with formulas directly in Smartsheet?
Check out the Formula Handbook template!
Check out the Formula Handbook template!