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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
Anonymous
Not applicable

Needed Measures to calculate total Supply and Gap

Hi,

I needed help on to build 2 measures on my data which screenshot is mentioned below.

In First, Demand Table has demand against each product. Three store tables (Store1,Store2 and Store3) has supply nos. for each product.

Now, I needed 2 measurs. 

"Total Supply" = Unit1Supply+Unit2Supply+Store2Supply+Store3Supply)

 "Demand-Supply Gap" =Total Supply- Demand

 
Demand
ProductDemand
A2000
B3500
C1500
D800
Store1
ProductUnit1SupplyUnit2Supply
A500400
B400200
C350125
D350400
Store2
ProductSupply
A600
B1200
C213
D150
Store3
ProductSupply
A800
B300
C167
D300
Measure1Measure2
Total SupplyDemand-Supply Gap
  
  
  
  

 

 

Thanks

@Greg_Deckler @MFelix 

1 ACCEPTED SOLUTION
Greg_Deckler
Super User
Super User

Well, first, this would be far easier if you just Appended your 3 store tables. That being said here is some untested code:

 

Total Supply Measure = 
  VAR __Store1Unit1Supply = SUMX(RELATEDTABLE('Store1'),[Unit1Supply])
  VAR __Store1Unit2Supply = SUMX(RELATEDTABLE('Store1'),[Unit2Supply])
  VAR __Store2Supply = SUMX(RELATEDTABLE('Store2'),[Supply])
  VAR __Store3Supply = SUMX(RELATEDTABLE('Store3'),[Supply])
RETURN
  __Store1Unit1Supply  + __Store1Unit2Supply + __Store2Supply + __Store3Supply

Demand-Supply Gap Measure =
  [Total Supply Measure] - SUM('Demand'[Demand])

 



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
Power BI Cookbook Third Edition (Color)

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

4 REPLIES 4
Greg_Deckler
Super User
Super User

Well, first, this would be far easier if you just Appended your 3 store tables. That being said here is some untested code:

 

Total Supply Measure = 
  VAR __Store1Unit1Supply = SUMX(RELATEDTABLE('Store1'),[Unit1Supply])
  VAR __Store1Unit2Supply = SUMX(RELATEDTABLE('Store1'),[Unit2Supply])
  VAR __Store2Supply = SUMX(RELATEDTABLE('Store2'),[Supply])
  VAR __Store3Supply = SUMX(RELATEDTABLE('Store3'),[Supply])
RETURN
  __Store1Unit1Supply  + __Store1Unit2Supply + __Store2Supply + __Store3Supply

Demand-Supply Gap Measure =
  [Total Supply Measure] - SUM('Demand'[Demand])

 



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
Power BI Cookbook Third Edition (Color)

DAX is easy, CALCULATE makes DAX hard...
amitchandak
Super User
Super User

Create a common product table and join with all four tables

After that you can have measure like

Correct the table names and measure names

Total Supply = sum(Unit1[Supply])+Sum(Unit2[Supply])+sum(Store2[Supply])+sum(Store3[Supply]))

 "Demand-Supply Gap" =[Total Supply]- sum(Demand[Demand])

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
Anonymous
Not applicable

Thanks for the prompt reply. It worked for me.

Sweet! 🙂



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
Power BI Cookbook Third Edition (Color)

DAX is easy, CALCULATE makes DAX hard...

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.