Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
i want calculate MTTR over 10 tickets ,30,60,90 days not getting proper result
Solved! Go to Solution.
Hi @Namrata95
For your question, here is the method I provided:
Here's some dummy data
"Table"
Create measures to calculate the results you want.
OVER 10 DAYS = CALCULATE(DISTINCTCOUNT('Table'[tickets_id]), FILTER(ALL('Table'), 'Table'[date] >= TODAY() - 10))
OVER 30 DAYS = CALCULATE(DISTINCTCOUNT('Table'[tickets_id]), FILTER(ALL('Table'), 'Table'[date] >= TODAY() - 30))
Here is the result.
Regards,
Nono Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Namrata95
For your question, here is the method I provided:
Here's some dummy data
"Table"
Create measures to calculate the results you want.
OVER 10 DAYS = CALCULATE(DISTINCTCOUNT('Table'[tickets_id]), FILTER(ALL('Table'), 'Table'[date] >= TODAY() - 10))
OVER 30 DAYS = CALCULATE(DISTINCTCOUNT('Table'[tickets_id]), FILTER(ALL('Table'), 'Table'[date] >= TODAY() - 30))
Here is the result.
Regards,
Nono Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
User | Count |
---|---|
25 | |
12 | |
8 | |
7 | |
7 |
User | Count |
---|---|
25 | |
12 | |
11 | |
10 | |
6 |