Connect with peers, share your expertise, and inspire what’s next in Smartsheet — from proven practices to practical how-to insights from fellow users and product experts.
Sign in to join the conversation:
The posts in this section are historical and no longer monitored for accuracy. If this discussion interests you and you'd like to join in, please visit the active Community to post and engage.
How can I select data that is older than 365 day?
=COUNTIFS(Product:Product, "ABC", [Project Complete Date]:[Project Complete Date], "Where Project Complete Date is < 365 days from today"
Hello Anil,
Thanks for the question. The formula can use the TODAY() function in order to look for dates in relation to the current date. More on the TODAY() function can be found here (https://help.smartsheet.com/function/today). Here's an example of how this formula could be written:
=COUNTIFS(Product:Product, "ABC", [Project Complete Date]:[Project Complete Date], <TODAY(-365))
This will only count rows where "Product" is "ABC" and "Project Complete Date" is prior to 365 days before today.
Thank you Robert.