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.
-
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!
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
- Customer Resources
- 64.8K Get Help
- 434 Global Discussions
- 138 Industry Talk
- 470 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 65 Community Job Board
- 486 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!