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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
yoav20007
Helper II
Helper II

help with basic dax min() of date

Hi

how i can find the minimun(the first date for each item) date for each item in this tabale with dax ? 

date              item   min date?

2/1/17             3

1/1/17             3

6/7/17            4

5/5/17           4

1 ACCEPTED SOLUTION
Ashish_Mathur
Super User
Super User

Hi,

 

You posted the same question here.  See my reply at than link.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

View solution in original post

4 REPLIES 4
Ashish_Mathur
Super User
Super User

Hi,

 

You posted the same question here.  See my reply at than link.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
v-qiuyu-msft
Community Support
Community Support

Hi @yoav20007,

 

You can create a measure below: 

 

MinDate = CALCULATE(MIN('Table1'[date]),FILTER(ALLSELECTED('Table1'),'Table1'[item]=MAX('Table1'[item]))) 

 

q2.PNG

 

Best Regards,
Qiuyun Yu 

Community Support Team _ Qiuyun Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Thank a lot 

Hi @yoav20007.

 

Please mark the relevant response as Answer.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors