Reputation: 11
I'm a novice to Tableau, not going to lie. But for the life of me I can't figure out how to pull data from a table that's greater than thirty days old.
Basically, I have a set of work orders, and I'm just trying to get the count of the total work orders that are open AND older than thirty days. How would I go about doing this? I feel like it's a lot simpler than I'm trying to make it out to be.
Upvotes: 1
Views: 3678
Reputation: 1814
You can use your date filed as a filter and choosing the relative filter format.
Upvotes: 0
Reputation: 1967
You will have to create a calculated field and filter on that.
TODAY() - [Date]
or, more flexible DATEDIFF("day" , [Date], TODAY())
That should do the trick.
Upvotes: 2