Forum Discussion
bhmiller89
8 years agoHelper V
30 days
I have a measures "INC Opened" which is the count of incident ticekts opened. I need to write a measure showing "INC Opened in the last 30 days" that updates every time my data refreshes (nightly)
I do have a calendar table key
- Anonymous8 years ago
HI bhmiller89,
Try this formula:
INC Opened in the last 30 days = CALCULATE ( [INC Opened]; FILTER ( ALL ('Date'[Date]); 'Date'[Date] > TODAY() - 30 )Regards.
1 Reply
- AnonymousNot applicable
HI bhmiller89,
Try this formula:
INC Opened in the last 30 days = CALCULATE ( [INC Opened]; FILTER ( ALL ('Date'[Date]); 'Date'[Date] > TODAY() - 30 )Regards.