Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM. Register 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êsJoin the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.
User | Count |
---|---|
82 | |
42 | |
31 | |
27 | |
27 |