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
michael_knight
Post Prodigy
Post Prodigy

Bring over the Min Date based on filters

Hi,

 

I'm trying to create a custom column which will bring over the Min Date based on filters from another table

 

MshpMeeting Date
101/01/2022
115/01/2022
110/02/2022
215/12/2021
229/01/2022
319/02/2022
422/01/2022
516/06/2021
508/08/2021
511/11/2021
503/01/2022

 

From that table above I want to create the below column:

 

Mshp_IDLatest Date
110/02/2022
229/01/2022
319/02/2022
422/01/2022
503/01/2022

 

I tried to create the column with this DAX but no luck

 

 

CALCULATE(
MIN( Meetings[Latest Date]) ,
ALLEXCEPT(Meetings,Meetings[Mshp_ID]) 
)

 

 

 

Any help would be appreciated

 

Thanks 

1 ACCEPTED SOLUTION
Applicable88
Impactful Individual
Impactful Individual

@michael_knight if I understood correctly please try:
Measure=
var  _Filter= Calculate (Min ('Table'[Date]))

Minx( Values(Mshp_ID), _Filter))

View solution in original post

1 REPLY 1
Applicable88
Impactful Individual
Impactful Individual

@michael_knight if I understood correctly please try:
Measure=
var  _Filter= Calculate (Min ('Table'[Date]))

Minx( Values(Mshp_ID), _Filter))

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
Top Kudoed Authors