Join 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!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
Hi,
Wondering if you can help. In the table below you can see those ticket made in Oct (filtered) and the date they were closed.
Can you help me with another column? This will only sum those tickets which have been solved within the date filter (like Oct in the picture). Hope this makes sense. I guess getting the max date from the filter?
I understand row by row this doesn't look correct, but the totals do. And look good when I take 'Solved Date' out of the Matrix.
Thanks,
Stu
Solved! Go to Solution.
You could try a measure like
Num solved =
var maxDate = MAX('Date'[Date])
var minDate = MIN('Date'[Date])
return CALCULATE( COUNTROWS('Table'),
REMOVEFILTERS('Date'),
'Table'[Solved date] >= minDate && 'Table'[Solved date] <= maxDate
)
Hi,
I think some more info might be required for someone to help you on this.
Give info like what is the expected output?
What happens when a different month is selected?
You could try a measure like
Num solved =
var maxDate = MAX('Date'[Date])
var minDate = MIN('Date'[Date])
return CALCULATE( COUNTROWS('Table'),
REMOVEFILTERS('Date'),
'Table'[Solved date] >= minDate && 'Table'[Solved date] <= maxDate
)
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 66 | |
| 51 | |
| 42 | |
| 25 | |
| 22 |
| User | Count |
|---|---|
| 139 | |
| 116 | |
| 54 | |
| 37 | |
| 31 |