Forum Discussion
monthly percent
- 1 year ago
To report on things that are not there you need to use disconnected tables and/or crossjoins. That includes a calendar table that needs to cover the entire period.
First, bring your data into a usable form
Then add the calendar, for example via
Dates = ADDCOLUMNS(CALENDAR("2021-09-01","2025-12-31"),"Year",FORMAT([Date],"yyyy"),"Month",FORMAT([Date],"mmm"),"MNo",FORMAT([Date],"mm"))And then add a measure that checks if the date on the calendar overlaps with the date range in the percentage table.
To report on things that are not there you need to use disconnected tables and/or crossjoins. That includes a calendar table that needs to cover the entire period.
First, bring your data into a usable form
Then add the calendar, for example via
Dates = ADDCOLUMNS(CALENDAR("2021-09-01","2025-12-31"),"Year",FORMAT([Date],"yyyy"),"Month",FORMAT([Date],"mmm"),"MNo",FORMAT([Date],"mm"))
And then add a measure that checks if the date on the calendar overlaps with the date range in the percentage table.
- RES1 year agoRegular Visitor
This is beautiful! Thank you!