Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
Ralf123
Frequent Visitor

Fill missing month row with zero

I have 2 tables, 'All months table' and 'Events table'. I would like to get a new table (Result Table) in which the events are summarized and the missing months are filled with zero. Does anyone knows how I can do this?

 

tables.jpg

1 ACCEPTED SOLUTION
bullius
Helper V
Helper V

Hi @Ralf123,

 

First of all, I would model your data in your Events table differently, like this: 

Events table 
EventNameDate
Event X01/02/2017
Event X02/02/2017
Event X01/03/2017
Event X01/04/2017
Event X02/04/2017
Event X01/05/2017
Event X01/06/2017
Event Y01/01/2017
etc… 

 

I used a "Date" column because you have more than one instance of the same event per month.

 

Then, I would create a Calendar table, rather than an All Months table, e.g.:

 

Calendar =
ADDCOLUMNS (
    CALENDAR ( "01-Jan-2010", "31-Dec-2020" ),
    "Year", YEAR ( [Date] ),
    "Month", FORMAT ( [Date], "MM" ),
    "Month Name", FORMAT ( [Date], "MMM" )
)

Then create a relationship between the two tables using the [Date] column.

 

Then you should be able to create a Matrix visual that resembles your Result Table.

 

Let me know how you get on.

View solution in original post

2 REPLIES 2
bullius
Helper V
Helper V

Hi @Ralf123,

 

First of all, I would model your data in your Events table differently, like this: 

Events table 
EventNameDate
Event X01/02/2017
Event X02/02/2017
Event X01/03/2017
Event X01/04/2017
Event X02/04/2017
Event X01/05/2017
Event X01/06/2017
Event Y01/01/2017
etc… 

 

I used a "Date" column because you have more than one instance of the same event per month.

 

Then, I would create a Calendar table, rather than an All Months table, e.g.:

 

Calendar =
ADDCOLUMNS (
    CALENDAR ( "01-Jan-2010", "31-Dec-2020" ),
    "Year", YEAR ( [Date] ),
    "Month", FORMAT ( [Date], "MM" ),
    "Month Name", FORMAT ( [Date], "MMM" )
)

Then create a relationship between the two tables using the [Date] column.

 

Then you should be able to create a Matrix visual that resembles your Result Table.

 

Let me know how you get on.

Great, this did the trick.

 

You saved me a lot of time, thanks

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.