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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Anonymous
Not applicable

Calculation

I have two table named Sales and Shops.

I want to do is if Shop Name from Sales table and Shop from Shops table data are same, return Qty column from Sales Table.

If not same, Divide Qty with Unit column from Shops.

I can't find the best solution for it. How can I do that?

Sales 
  
Shop NameQty
AAA30
BBB44
CCC20
DDD

16

 

Shops 
  
ShopUnit
JJJ3
AAA5
GGG2
CCC3
KKK

4

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Anonymous ,

 

Data model:

vrzhoumsft_1-1679649384363.png

I think you can try this code to create a calculated column in shops table.

Column = 
VAR _QTY = CALCULATE(SUM(Sales[Qty]))
VAR _ALL = SUM(Sales[Qty])
RETURN
IF(_QTY = BLANK(), DIVIDE(_ALL,Shops[Unit]),_QTY)

Result is as below.

vrzhoumsft_0-1679649357969.png

 

Best Regards,
Rico Zhou

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @Anonymous ,

 

Data model:

vrzhoumsft_1-1679649384363.png

I think you can try this code to create a calculated column in shops table.

Column = 
VAR _QTY = CALCULATE(SUM(Sales[Qty]))
VAR _ALL = SUM(Sales[Qty])
RETURN
IF(_QTY = BLANK(), DIVIDE(_ALL,Shops[Unit]),_QTY)

Result is as below.

vrzhoumsft_0-1679649357969.png

 

Best Regards,
Rico Zhou

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

amitchandak
Super User
Super User

@Anonymous , Create a common Dimension Shop from both the tables (if have date, create date too) and use that in conditional formatting

 

Power BI- DAX: When I asked you to create common tables: https://youtu.be/a2CrqCA9geM
https://medium.com/@amitchandak/power-bi-when-i-asked-you-to-create-common-tables-a-quick-dax-solution-8e3eccb41bda

 

Power BI- Power Query: When I asked you to create common tables: https://youtu.be/PqfGW6pl1Sw

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

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

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 community update carousel

Fabric Community Update - June 2025

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