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
- Customer Resources
- 65.2K Get Help
- 445 Global Discussions
- 143 Industry Talk
- 476 Announcements
- 5K Ideas & Feature Requests
- 84 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 488 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 301 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!