Marrying three formulas together
I have three different formulas, containing various criteria, which I want to want to marry together and for which all things must be true: 1) project start date is less than 1/1/24; 2) go-live date is greater than 12/31/23 and 3) the project stage is "In progress" or "Waiting to start":
=COUNTIF({HR Projects Project Start Date}, <DATE(2024, 1, 1))
=COUNTIF({HR Projects Go-Live Date}, >DATE(2023, 12, 31))
=COUNTIFS({HR Projects - PMO Range 1}, OR(CONTAINS("In Progress", @cell), CONTAINS("Waiting to start", @cell)))
Best Answer
-
Give this a try:
=COUNTIFS({HR Projects Project Start Date}, < DATE(2024, 1, 1), {HR Projects Go-Live Date}, > DATE(2023, 12, 31), {HR Projects - PMO Range 1}, OR(CONTAINS("In Progress", @cell), CONTAINS("Waiting to start", @cell)))
Answers
-
Give this a try:
=COUNTIFS({HR Projects Project Start Date}, < DATE(2024, 1, 1), {HR Projects Go-Live Date}, > DATE(2023, 12, 31), {HR Projects - PMO Range 1}, OR(CONTAINS("In Progress", @cell), CONTAINS("Waiting to start", @cell)))
-
Thank you, that's it! I thought that's what I wrote, but clearly not. 😉 THANKS so much!
-
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
- 497 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!