Changing Status to a number in order to chart
Hello! I am needing to make a widget in a dashboard t show the number of "complete, not started, or in progress" items I have. I know I need to change the status to a number. I have tried to do this with "IF logic but am failing. Can someone help with a formula for the following case?
If status is Not Started = 1
If status is In Progress = 2
If status is Completed = 3
Thank you!!!
Comments
-
This only counts cells that are at a certain "Level" in the heirarchy and then it counts the "Health" for the given condition. In this case "red". You'll need a formula for each color. There are a million variations. Check out the courses around advanced formulas.
=COUNTIFS($Level$9:$Level$242, ="", $Health$9:$Health$242, "red")
-
Hi,
Not sure I follow!
Do you want to show a number, or do you want to count how many there are of each value?
Here's an example of the former.
Try something like this.
=IF(Status@row = "Not Started"; "1"; IF(Status@row = "In Progress"; "2"; IF(Status@row = "Completed"; "3")))
The same version but with the below changes for your and others convenience.
=IF(Status@row = "Not Started", "1", IF(Status@row = "In Progress", "2", IF(Status@row = "Completed", "3")))
Depending on your country you’ll need to exchange the comma to a period and the semi-colon to a comma.
Did it work?
I hope that helps!
Have a fantastic day!
Best,
Andrée Starå
Workflow Consultant / CEO @ WORK BOLD
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.
-
Just try this...
=COUNTIFS(Status:Status, "Not Started")
=COUNTIFS(Status:Status, "In Progress")
=COUNTIFS(Status:Status, "Completed")
.
These three formulas will show you "...the number of "complete, not started, or in progress" items..." you have.
Come see me in Seattle at ENGAGE 2024! I will be at the 10xViz partner booth throughout as well as the "Lets Talk About Community" Meet & Eat table on Tuesday from 11:45am - 12:45pm!
-
This is exactly what I needed. THANK YOU SO MUCH!!!!
-
Thank you so much for this help! This did work as well, but I explained it wrong. The comment below is the formula I was looking for. Rookie mistake
-
Happy to help!
Come see me in Seattle at ENGAGE 2024! I will be at the 10xViz partner booth throughout as well as the "Lets Talk About Community" Meet & Eat table on Tuesday from 11:45am - 12:45pm!
-
Happy to help!
No worries! The important thing is that you got a working solution!
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.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 62.8K Get Help
- 376 Global Discussions
- 207 Industry Talk
- 440 Announcements
- 4.5K Ideas & Feature Requests
- 139 Brandfolder
- 129 Just for fun
- 130 Community Job Board
- 449 Show & Tell
- 30 Member Spotlight
- 1 SmartStories
- 284 Events
- 33 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!