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
Hello,
I have my inventory in one column, how can I create a column that divides the inventory column by a number to get pallet count?
I have multiple pallet configurations depending on the SKU. The good news is, SKU 12345 will always be in pallet configurations of 100.
Thanks for your help.
Solved! Go to Solution.
@olivere91 Do you have a table of SKU and denominator? IE:
SKU | Pallet Config Value |
12345 | 100 |
12346 | 60 |
It can be a column added in your DimProduct table.
Then assuming your Inventory table is related by 1 to many on SKU to the DimProduct table, you could use new column:
Pallet Count = DIVIDE( Inventory[Value] , RELATED( DimProduct[Pallet Config Value]) )
Copying DAX from this post? Click here for a hack to quickly replace it with your own table names
Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C
I work as a Microsoft trainer and consultant, specialising in Power BI and Power Query.
www.excelwithallison.com
@olivere91 Do you have a table of SKU and denominator? IE:
SKU | Pallet Config Value |
12345 | 100 |
12346 | 60 |
It can be a column added in your DimProduct table.
Then assuming your Inventory table is related by 1 to many on SKU to the DimProduct table, you could use new column:
Pallet Count = DIVIDE( Inventory[Value] , RELATED( DimProduct[Pallet Config Value]) )
Copying DAX from this post? Click here for a hack to quickly replace it with your own table names
Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C
I work as a Microsoft trainer and consultant, specialising in Power BI and Power Query.
www.excelwithallison.com
Thank you for your help!
You're welcome. Glad it worked.
Copying DAX from this post? Click here for a hack to quickly replace it with your own table names
Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C
I work as a Microsoft trainer and consultant, specialising in Power BI and Power Query.
www.excelwithallison.com
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 |
---|---|
113 | |
80 | |
79 | |
47 | |
39 |
User | Count |
---|---|
149 | |
110 | |
66 | |
64 | |
56 |