The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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 |
---|---|
16 | |
8 | |
7 | |
6 | |
6 |
User | Count |
---|---|
26 | |
13 | |
12 | |
8 | |
8 |