Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
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
Check out the November 2023 Power BI update to learn about new features.
Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.