Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. 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êsThis is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
84 | |
75 | |
68 | |
41 | |
35 |
User | Count |
---|---|
102 | |
56 | |
52 | |
46 | |
40 |