Forum Discussion
Automaticly generate missing rows
- 4 years ago
If you want to view records that are no available for months you can do following
- Create a separate table for City
- Create a separate table for MonthCode
- Join Both table with this main table
- Use City & MonthCode from those new tables in Table Visual
- Use Actions from main table
- in Table Visual fields right click on city and check "Show Items with no data"
- you will get following results as show in Table 2
Thanks a lot for your answer Ahmed !
I've managed to join my city and monthCode tables like this
But, this might seems dumb, how do i join my main table with this one ?
you need to create seperate table for each of Month Code & City and joined them in Data Model as shown below
I have created those tables using simple approach of summarize on Main table
City = SUMMARIZE(Table,Table[City])
- BoyerAlexis4 years agoFrequent Visitor
This is exactly what we needed, thanks a lot Ahmed !