Sign in to join the conversation:
Hi, can someone please help me - I am trying to count the total of Red, Yellow and Green Balls in a column and cant get my formula to work. Currently my formula reads
=COUNTIFS([Status2]4:[Status2]33, "GREEN", "YELLOW", "RED")
thank you
Very close! try something like this...
=COUNTIFS([Status2]4:[Status2]33, OR(@cell = "Red", @cell = "Yellow", @cell = "Green"))
Hi Chris,
Try this.
=COUNTIF([Status2]4:[Status2]33; "GREEN") + COUNTIF([Status2]4:[Status2]33; "YELLOW") + COUNTIF([Status2]4:[Status2]33; "RED")
The same version but with the below changes for your and others convenience.
=COUNTIF([Status2]4:[Status2]33, "GREEN") + COUNTIF([Status2]4:[Status2]33, "YELLOW") + COUNTIF([Status2]4:[Status2]33, "RED")
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 weekend!
Best,
Andrée Starå
Workflow Consultant @ Get Done Consulting
Thank You Paul, It worked - Much Appreciated!
Thanks Andrea, appreciate the help - Tried Both you and Pauls, both worked. Thanks heaps
Happy to help.
Looks like Andree and I were typing up solutions at about the same time. Hahaha
Happy to help!
Andrée
I want to do the same thing but I couldn't get the formulas to work. I'm in the States. Can you send me a formula suggestion for this:
@Susie Wachowski
My formula above should work for you. What exactly are you trying to accomplish and what results are you getting?
I'm trying to count the number of green, yellow, and red balls in the Status column. I'm getting a #UNPARSEABLE error message. This is the formula I modified to count rows 3-142 in the Status column: =COUNTIFS([Status1]3:[Status1]142, OR(@cell = "Red", @cell = "Yellow", @cell = "Green"))
What is your actual column name?
Status
Try using your actual column name instead of [Status1]. That should clear it up for you.
Ahh yes, that was the secret, thank you!!
Happy to help! 👍️
Has anyone found a workaround for sharing Smartsheet reports externally without giving access to internal data? I currently have to download the data and transfer it onto excel to create a pivot table for our client and I want to find an easier way to do so. I also already create a dashboard for our client, but I wanted…
Hello team! Hope you all are having a wonderful holiday season. I am trying to set up an automation that will send an email reminder one time when Next Update Date = 60 days, then another automation at 30d, etc. The key is I only want it to send the reminder one time when Next Update threshold is reached. Is this possible?…
I have an automation setup to escalate to managers when a step goes beyond 2 days. I have that titled as Escalation for Purchasing, Escalation for Planning, etc. In my trial run, 3 out of 6 showed up as Reminder: New part number request log ( this is the name of the sheet) The only thing we could see was that the ones that…