The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hi all,
Once again I need your precious help 🙂
I need to find the measure that helps me create the followinfg column:
Data model is like this:
In a matrix I have a first column with the quantity in stock per store and in a specific warehouse (all in store table)
Second column is the distribution of the sales per stores (Warehouse is not concerned)
Third (which I struggle with) is the amount in stock per store + the warehouse stock quantity, distributed in each store based on the sales ratio above
Many thanks in advance for your help,
Best
Jonathan
Solved! Go to Solution.
Hi, @Jo_Chrq
You can try the following methods.
Sample data:
Store Table:
Sales Table:
Measure:
Stock+Warehouse distrib =
Var _N1=SUM('Store Table'[Stock])
Var _N2=SUM('Sales Table'[Sales distrib])
Var _warehouse=CALCULATE(SUM('Store Table'[Stock]),FILTER(ALL('Store Table'),[Store]="Warehouse"))
Return
IF(_N2=BLANK(),BLANK(),_N1+_N2*_warehouse)
Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @Jo_Chrq
You can try the following methods.
Sample data:
Store Table:
Sales Table:
Measure:
Stock+Warehouse distrib =
Var _N1=SUM('Store Table'[Stock])
Var _N2=SUM('Sales Table'[Sales distrib])
Var _warehouse=CALCULATE(SUM('Store Table'[Stock]),FILTER(ALL('Store Table'),[Store]="Warehouse"))
Return
IF(_N2=BLANK(),BLANK(),_N1+_N2*_warehouse)
Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
It's exactly what I need !
Thanks a lot
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
114 | |
80 | |
78 | |
44 | |
39 |
User | Count |
---|---|
150 | |
116 | |
68 | |
64 | |
58 |