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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
olexi
Frequent Visitor

Add records for missing dates into the table

Hi! Could someone help to fix this calculation or provide an advice?

There is a large table Production that has Date, Model, Part columns (among others). There is a measure TakeRate that calculates a historical ratio of part per model - this one is working properly. There is also another measure Plan to calculate a Model plan volume per Date that is located in another table, also working correctly. The calculation that fails is called Estimate and it multiplies TakeRate by Plan and aggregates within Production table - rows roll-up is needed as TakeRate produces wrong results at a higer level due to a nature of this calculation. Now, the problem is that Production table doesn't have records for all dates for each Part and Model combination, so Plan for these dates is not included into a calculation.

 

Estimate = 
   VAR PartModels = 
   //ADDMISSINGITEMS( 'Date'[MonthDate], 'Model'[model],
   SUMMARIZE( 
        Production,
        'Date'[MonthDate],
        'Model'[model],
        Production[part_no])
    //, 'Date'[MonthDate], 'Model'[model])

    VAR RollUp = 
     SUMX( PartModels,
        [Plan] * [TakeRate]
    )
RETURN RollUp 

 

1 ACCEPTED SOLUTION
olexi
Frequent Visitor

It turned out that when I do not include 'Date'[MonthDate] into SUMMARIZE, it works and aggregates as it should.

View solution in original post

2 REPLIES 2
olexi
Frequent Visitor

It turned out that when I do not include 'Date'[MonthDate] into SUMMARIZE, it works and aggregates as it should.

Fowmy
Super User
Super User

@olexi 

I am not sure how the measures [Plan] and [RakeRate] are constructed but to create all combinations including the missing dates you can try using the either CROSSJOIN or GENERATE functions within your measure.

 

________________________

If my answer was helpful, please click Accept it as the solution to help other members find it useful

Click on the Thumbs-Up icon if you like this reply 🙂


Website YouTube  LinkedIn

 

 

Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.