March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
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 Name | Qty |
AAA | 30 |
BBB | 44 |
CCC | 20 |
DDD | 16 |
Shops | |
Shop | Unit |
JJJ | 3 |
AAA | 5 |
GGG | 2 |
CCC | 3 |
KKK | 4 |
Solved! Go to Solution.
Hi @Anonymous ,
Data model:
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.
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.
Hi @Anonymous ,
Data model:
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.
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.
@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
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
25 | |
18 | |
15 | |
9 | |
8 |
User | Count |
---|---|
37 | |
32 | |
18 | |
16 | |
13 |