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! Learn more
Hi there,
I perused the forum but could find what I'm looking at.
I have this data:
| Name | Qty | Date |
| Peter | 10 | 01/04/2024 |
| Tom | 2 | 30/03/2024 |
| Sam | 5 | 15/03/2024 |
| Peter | 6 | 02/01/2024 |
| Tom | 8 | 14/03/2024 |
| Sam | 40 | 27/02/2024 |
So I have in pbi a matrix with
Rows: Name
Values: Min of Qty
But I would like to get as well the date the Min Qty occured. And I have no idea how to gt that. Tried different solutions but without sucess.
| Name | Min Qty | Date |
| Peter | 6 | 02/01/2024 |
| Tom | 2 | 30/03/2024 |
| Sam | 5 | 15/03/2024 |
Thanks for the help 😉
Solved! Go to Solution.
try this measure,
Min date =
VAR _minQty = MIN('Table 1'[Qty])
VAR _minDate = CALCULATE(
MIN('Table 1'[Date]),'Table 1'[Qty] = _minQty)
RETURN _minDate
try this measure,
Min date =
VAR _minQty = MIN('Table 1'[Qty])
VAR _minDate = CALCULATE(
MIN('Table 1'[Date]),'Table 1'[Qty] = _minQty)
RETURN _minDate
Advance 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.