Forum Discussion
wiselyman3
2 years agoHelper II
Count Rows older than 7 days
Hi All, I am trying to create a visual that shows the number of complaints (rows) that are older than 7 days. Each row has a date in the "Date" column, and this column is formatted as a date. I ...
- 2 years ago
wiselyman3 Try this measure:
Num =var _v = TODAY()-7returnCALCULATE(COUNT(q5[Complaint Number]), FILTER(q5, q5[Date]<= _v))P.S. q5 is the name of the table.Thank You, accept as solution if this helps.
wiselyman3
2 years agoHelper II
Apologies, this would be 2 complaints older than 7 days in this example. Long day!