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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors