Inserting DATE is greater than to formula
How do I insert date is greater than into a formula?
Current formula is:
=COUNTIFS({Stage}, OR(@cell = "Approved - Monetized", @cell = "Approved in Subnetwork"))
I need to add that it should only be counting Stage items if they have date greater than 12/5/20
Best Answer
-
Good to see you again in the community
Try this
=COUNTIFS({Stage}, OR(@cell = "Approved - Monetized", @cell = "Approved in Subnetwork"), {your date range}, @cell> DATE(2020, 12, 5))
My personal preference is to also add an additional ISDATE(@cell) criteria to try to weed out non-date counts.
=COUNTIFS({Stage}, OR(@cell = "Approved - Monetized", @cell = "Approved in Subnetwork"), {your date range}, ISDATE(@cell), {your date range}, @cell> DATE(2020, 12, 5))
Oh, and if it's greater than or equal to: the equal sign always follows the greater than or less than symbols.
Kelly
Answers
-
Good to see you again in the community
Try this
=COUNTIFS({Stage}, OR(@cell = "Approved - Monetized", @cell = "Approved in Subnetwork"), {your date range}, @cell> DATE(2020, 12, 5))
My personal preference is to also add an additional ISDATE(@cell) criteria to try to weed out non-date counts.
=COUNTIFS({Stage}, OR(@cell = "Approved - Monetized", @cell = "Approved in Subnetwork"), {your date range}, ISDATE(@cell), {your date range}, @cell> DATE(2020, 12, 5))
Oh, and if it's greater than or equal to: the equal sign always follows the greater than or less than symbols.
Kelly
-
Kelly, you're the best!! Thanks so much. :)
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 63.5K Get Help
- 402 Global Discussions
- 213 Industry Talk
- 450 Announcements
- 4.7K Ideas & Feature Requests
- 141 Brandfolder
- 135 Just for fun
- 56 Community Job Board
- 454 Show & Tell
- 31 Member Spotlight
- 1 SmartStories
- 296 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!