Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
TheBaz_57
Frequent Visitor

Find the date a min value occured.

Hi there,

 

I perused the forum but could find what I'm looking at.

 

I have this data:

NameQtyDate
Peter1001/04/2024
Tom230/03/2024
Sam515/03/2024
Peter602/01/2024
Tom814/03/2024
Sam4027/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.

 

NameMin QtyDate
Peter602/01/2024
Tom230/03/2024
Sam5

15/03/2024

 

Thanks for the help 😉

 

1 ACCEPTED SOLUTION
Arul
Super User
Super User

@TheBaz_57 ,

try this measure,

Min date = 
VAR _minQty = MIN('Table 1'[Qty])
VAR _minDate = CALCULATE(
    MIN('Table 1'[Date]),'Table 1'[Qty] = _minQty)
RETURN _minDate

Arul_0-1712659370141.png

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!


LinkedIn


View solution in original post

2 REPLIES 2
Arul
Super User
Super User

@TheBaz_57 ,

try this measure,

Min date = 
VAR _minQty = MIN('Table 1'[Qty])
VAR _minDate = CALCULATE(
    MIN('Table 1'[Date]),'Table 1'[Qty] = _minQty)
RETURN _minDate

Arul_0-1712659370141.png

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!


LinkedIn


Ahmedx
Super User
Super User

pls try this

Screenshot_1.png

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.