Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Date Filtering - Qilk Sense

Good Morning Everyone,

I am trying to build a formula that would filter the number of new accounts that my Sales Team opened in the last 120 days.

My Field is called OPNDAT and the formatting is M/DD/YYYY HH:MM:SS AM

Thanks

1 Solution

Accepted Solutions
sinanozdemir
Specialist III
Specialist III

Hi Barry,

You can try to handle this in your WHERE clause:

WHERE OPNDAT = Today() and OPNDAT <= Today() - 120.

Hope this helps.

View solution in original post

2 Replies
sinanozdemir
Specialist III
Specialist III

Hi Barry,

You can try to handle this in your WHERE clause:

WHERE OPNDAT = Today() and OPNDAT <= Today() - 120.

Hope this helps.

Not applicable
Author

That did it Thank you ...