Forum Discussion
Granularity for M365 Usage Analytics data
- 5 years ago
Hi sicalandmt1 ,
Do you want to show the daily total like the screenshot below?
If you want to show the past 30 days, you can refer the following steps.
1. Create a measure like this,
Measure = var _past30 = CALCULATE(MAX('Table'[Date]),ALLSELECTED('Table'))-30 return CALCULATE(SUM('Table'[value]),FILTER('Table','Table'[Date]>=_past30))2. Then we can create a bar chart to get the result.
If it doesn’t meet your requirement, could you please provide a mockup sample based on fake data?
It will be helpful if you can show us the exact expected result based on the tables.
Please upload your files to OneDrive For Business and share the link here. Please don't contain any Confidential Information or Real data in your reply.
Best regards,
Community Support Team _ zhenbw
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
BTW, pbix as attached.
Hi sicalandmt1 ,
Do you want to show the daily total like the screenshot below?
If you want to show the past 30 days, you can refer the following steps.
1. Create a measure like this,
Measure =
var _past30 = CALCULATE(MAX('Table'[Date]),ALLSELECTED('Table'))-30
return
CALCULATE(SUM('Table'[value]),FILTER('Table','Table'[Date]>=_past30))
2. Then we can create a bar chart to get the result.
If it doesn’t meet your requirement, could you please provide a mockup sample based on fake data?
It will be helpful if you can show us the exact expected result based on the tables.
Please upload your files to OneDrive For Business and share the link here. Please don't contain any Confidential Information or Real data in your reply.
Best regards,
Community Support Team _ zhenbw
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
BTW, pbix as attached.