Sign in to join the conversation:
So I want to see how many Not Started, In-Progress or Completed each person has.
Here you go.
=countifs([Assignee Column TItle]:[Assignee Column Title], "Assignee Name", Status:Status,"Not started")
Just replace Assignee Column Title with the title of your assignee column and replace assignee name with the name of your assignee. It can't be the email address but rather the display name.
Just change the status "Not Started" To whichever Status you want to replicate it for the other status' you are checking.
Thats Great Mike, so do I have to have a seperat formula for each status? or how can I show Mike Wilday 3 completed, 2 Not Started 1 In-Progess?
You could do something like this...
="Assignee Name: " + COUNTIFS(Assignee:Assignee, "Assignee Name", Status:Status, "Not started") + " Not Started; " + COUNTIFS(Assignee:Assignee, "Assignee Name", Status:Status, "In Progress") + " In Progress; " + COUNTIFS(Assignee:Assignee, "Assignee Name", Status:Status, "Complete") + " Complete;"
You would have to replace Assignee name and adjust your columns if they are different than Assignee and Status.
See screenshot for example.
Thank you it worked fine!
Awesome. Glad I could help.
Hey Mike, for some reason it wont pick up the rest of the Status only Not Started. What am I doing wrong here?
="Trinity Castle: " + COUNTIFS([Sales Rep]:[Sales Rep], "Trinity Castle", Status:Status, "Not started") + " Not Started; " + COUNTIFS([Sales Rep]:[Sales Rep], "Trinity Castle", Status:Status, " In-Progress") + " In-Progress; " + COUNTIFS([Sales Rep]:[Sales Rep], "Trinity Castle", Status:Status, "Complete") + " Complete;"
Trinity Castle: 1 Not Started; 0 In-Progress; 0 Complete;
Found the Typos, my bad they all work thanks again
Okay cool! Glad it's working!
Hi! I'm fairly new to SmartSheets but have been trying a number of things that havent yet worked. I want to be able to show for each parent row, the number of child rows completed as a %. So for the parent row Process Overview there are 7 tasks and 6 tasks are complete so I want it to show as 90%. Can anyone help me?
I have a column named Territory, where I am trying to write a formula to populate it when names are chosen from an adjacent drop-down list column called Employee Attendee. If more than one name is selected from the Employee column, I would like their respective territories to populate in the Territory field, separated by a…
Hello, I am trying to find the average audit score for a range of percentages between two dates. There are divider rows for organization by month. I have been trying to utilize the following formula but continue to get #DIVIDE BY ZERO for an answer: =AVG(COLLECT([Audit Score]:[Audit Score], [Date of Chat]:[Date of Chat],…