Formula Help
Hi All,
I am in need of some formula help!
1. I would like to count all of the projects in my portfolio that are in the Active state and either Yellow or Red health. I have a Dropdown List column for State and a Symbols column for Health (RYGB balls).
This is the formula I've have been trying. I am getting the Unparseable error.
=COUNTIFS([Health:Health, "Red"], [Health:Health, "Yellow"], [State:State, "Active"])
2. I would like to count all of the projects in my portfolio that are launching in Jan, in Feb, in March, etc. I have a Date column called Upcoming Launch Date.
This is the formula I've tried for this one (for projects launching in January):
=COUNTIF([Upcoming Launch Date]:[Upcoming Launch Date], (MONTH(1)))
I would really appreciate some guidance on one or both of these formulas to understand what I'm entering wrong.
Thanks so much!!
Comments
-
Try this:
=COUNTIFS(Health:Health, "Red", State:State, "Active") + COUNTIFS(Health:Health, "Yellow", State:State, "Active")
-
Your 2nd one I could tackle with a helper column called Month, and use =MONTH([Upcoming Launch Date]1)
This will give you the Month number for each row.
Then use this info to count for January:
=COUNTIF(Month:Month, =1)
There is likely a way to do in a single formula but it wasn't working for me yet.
-
=COUNTIFS(Upcoming Launch Date:Upcoming Launch Date, IFERROR(MONTH(@cell), 0) = 1)
This will check every cell in the Launch Date Range and return the results from January. If there is no date in the cell (which returns an error) it will count it as a 0.
-
Thank you so much! This worked!
-
Great suggestion! Appreciate the help
-
Perfect, thanks so much!!
-
You're welcome. I'm glad I could be of assistance.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.9K Get Help
- 441 Global Discussions
- 139 Industry Talk
- 471 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 494 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!