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

Get certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now

Reply
Ak_26696
Frequent Visitor

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
v-rzhou-msft
Community Support
Community Support

Hi @Ak_26696 ,

 

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
v-rzhou-msft
Community Support
Community Support

Hi @Ak_26696 ,

 

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

@Ak_26696 , 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-soluti...

 

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

Join us as experts from around the world come together to shape the future of data and AI!
At the Microsoft Analytics Community Conference, global leaders and influential voices are stepping up to share their knowledge and help you master the latest in Microsoft Fabric, Copilot, and Purview.
️ November 12th-14th, 2024
 Online Event
Register Here

Helpful resources

Announcements
November Carousel

Fabric Community Update - November 2024

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

Live Sessions with Fabric DB

Be one of the first to start using Fabric Databases

Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.

Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.

Nov PBI Update Carousel

Power BI Monthly Update - November 2024

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