Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi, I have this measure which count shorted qty and gives number of days item was shorted.
And I trying to group 'Days Shorted' into six groups. These are the groups:
And this is expected result based on sample data:
I attached sample data.
https://we.tl/t-fT2YKclDaE
If there is need for larger data sample I can provide it.
Hi @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:
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsAdvance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.