Formula with COUNTIF and Checkbox
I have this working formula:
="Unit 2G is " + ROUND((COUNTIF([Unit Name]:[Unit Name], "2G") / 14) * 100) + "% Completed"
2G could also be 3G, 4H, and 2H. (Dropdown selection list)
I have a checkbox column named: "Task Completed?"
How would I use the working formula to not do the calculation until the checkbox is "Checked"
Thanks
Comments
-
Hi Daniel,
Try something along the line of.
=IF([Task Completed]@row = 1; "Unit 2G is " + ROUND((COUNTIF([Unit Name]:[Unit Name]; "2G") / 14) * 100) + "% Completed")
The same version but with the below changes for your and others convenience.
=IF([Task Completed]@row = 1, "Unit 2G is " + ROUND((COUNTIF([Unit Name]:[Unit Name], "2G") / 14) * 100) + "% Completed")
Depending on your country you’ll need to exchange the comma to a period and the semi-colon to a comma.
Did it work?
Have a fantastic week!
Best,
Andrée Starå
Workflow Consultant @ Get Done Consulting
SMARTSHEET EXPERT CONSULTANT & PARTNER
Andrée Starå | Workflow Consultant / CEO @ WORK BOLD
W: www.workbold.com | E:andree@workbold.com | P: +46 (0) - 72 - 510 99 35
Feel free to contact me for help with Smartsheet, integrations, general workflow advice, or anything else.
-
You could also use the countifs formula to do something like this
="Unit 2G is " + ROUND((COUNTIFS([Unit Name]:[Unit Name], "2G",[Task Completed]:[Task Completed],1) / 14) * 100) + "% Completed"
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 63.9K Get Help
- 410 Global Discussions
- 220 Industry Talk
- 458 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 137 Just for fun
- 57 Community Job Board
- 459 Show & Tell
- 31 Member Spotlight
- 1 SmartStories
- 298 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!