Forum Discussion
Stacked bar chart based off measure values
I am trying to create a 100% stacked column based off the results of the measure below: I have created a DistinctCount measure to give me a count of items per Par Location ID(screenshot below). I have tried doing some Calculate/Countrow variations, but I think I'm missing a piece of the puzzle to bring everything together. Would I need to create separate measures for each of these 5 outputs in order to create a stacked bar chart? Currently it just shows the chart as 100% "HOT," and doesn't factor in the other 4 values.
ITEM STATUS =
IF('2_Bin_Query'[DelPerWeek] = 0, "STALE",
IF('2_Bin_Query'[DaysToTurn] = 0, "SLOW",
IF( '2_Bin_Query'[DaysToTurn] <= [HotSpinCalc],
"HOT",
IF([DaysToTurn] >=[ColdSpinCalc],
"COLD",
"OPTIMAL"
))))3 Replies
- v-yulgu-msft
Microsoft Employee
Hi Anonymous,
Please provide some sample data in source table and the DAX formula for those measures, [DelPerWeek], [DaysToTurn],
[HotSpinCalc] and [ColdSpinCalc].
How to Get Your Question Answered Quickly
Regards,
Yuliana Gu
- AnonymousNot applicableDelPerWeek = MIN('Cart Locations Delivery Schedule'[Delivery Days])DaysToTurn = [DATERANGE]/[NumOfOrders]DATERANGE = DATEDIFF(MAX('2_Bin_Query'[Demand Date]), TODAY(), DAY)ColdSpinCalc = 5*(1+(7/[DelPerWeek])+2)HotSpinCalc = (1+(7/[DelPerWeek])+2)NumOfOrders = CALCULATE(COUNT('2_Bin_Query'[Item Number]), ALLEXCEPT('2_Bin_Query', '2_Bin_Query'[Item Number], '2_Bin_Query'[Par Location ID]))I have attached the source data in an excel table, if you want me to attach the PBIX file instead, let me know. Also, thanks for the article to get answers quickly. I was thinking if there is a way to create a reference table for the outputs of the original IF statement, that might be the way to go. Not sure if that is the best way to go about solving this, so I am open to whatever solutions you may recommend. Let me know if you have any additional questions. Thanks
- AnonymousNot applicable
bump