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

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
Iamnvt
Continued Contributor
Continued Contributor

BOM Modeling

hi,

 

I have 3 tables:

1. Product Master data as dimension table for all material code

2. BOM: 1 Material contains many child components

3. Sales Order table: as fact table for orders of each parent material codes

 

--> what is the approach for calculating child components requirement from the Sales orders?

 

Material requirement of Purchased Item  = Requested Quantity (from Sales orders) x Usage (from BOM table)

 

Thanks,

 

Capture.PNG

 

1 ACCEPTED SOLUTION
Iamnvt
Continued Contributor
Continued Contributor

hi,

 

I found the solution through Many to Many relationship topic.

 

https://exceleratorbi.com.au/many-many-relationships-dax-explained/#comment-23150

 

thanks for helping anyway.

View solution in original post

4 REPLIES 4
Anonymous
Not applicable

 

@Iamnvt,

Please create a measure in the BOMReport table using DAX below.

Material requirement of Purchased Item  = SUM ( 'BOMReport'[Usage] ) * SUMX ( RELATEDTABLE (OB), OB[Requested Quantity] )  )

And you can review the example in my environment.

Measure = SUM ( 'product'[price] ) * SUMX ( RELATEDTABLE ( sales ), sales[amount] )  )
1.JPG2.JPG

However, if you don't get expeted result using the above DAX, please share sample data of your tables. Do mask sensitive data before uploading sample data.

Regards,
Lydia

Iamnvt
Continued Contributor
Continued Contributor

hi,

 

thanks for your answer. It seems not working.

I attached a sample with the expected result. This can be done through merge function in PQ, however, I don't want to flatten the material requirement in BOM table.

 

https://1drv.ms/x/s!Aps8poidQa5zku5ZWW9lT_x6em_EZA

 

 

Just want to find a DAX solution to calculate the component requirements.

 

 

Thanks again,

Anonymous
Not applicable

@Iamnvt,

Create a new table using DAX below.

Table = GENERATEALL(BOM,var productid =BOM[Product] return SELECTCOLUMNS(CALCULATETABLE(Sales,Sales[Product]=productid),"sales",Sales[Sales]))


Then create a table  visual as follows.
1.JPG



Regards,
Lydia

Iamnvt
Continued Contributor
Continued Contributor

hi,

 

I found the solution through Many to Many relationship topic.

 

https://exceleratorbi.com.au/many-many-relationships-dax-explained/#comment-23150

 

thanks for helping anyway.

Helpful resources

Announcements
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.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.