Forum Discussion
Justas4478
Post Prodigy
2 years agoCreating group by measure using existing measure
Hi, I have this measure which count shorted qty and gives number of days item was shorted. Days Shorted = VAR _Table = SUMMARIZE( 'Outbound Delivery', 'Product Category'[...
MFelix
Super User
2 years agoHi Justas4478 ,
since you are in live connection you need to create a measure for each of your calculation try to add a measure for each of your calculations:
1 days =
VAR temp_table = SUMMARIZE(
'Outbound Delivery',
'Outbound Delivery'[Gate/Floor],
'Outbound Delivery'[SKU Number],
"Days", [Days Shorted]
)
RETURN
COUNTROWS(FILTER(
temp_table,
[Days] = 1
)
)
Just replace the 1 by the number of days you need and then on the matrix visualization put values on rows: