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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
RichBurdick
Helper I
Helper I

Help With Measure for Date

I have data  from two tables that I am trying to use to get one date.  One table is an audt trail table that holds the date(s) a record was closed (or re-closed).  I have filtered only the activities I want to use in Power Query.

 

The audit trail table has the following:

  • ID field
  • Activity Name field
  • Date Performed field
  • Source State field
  • Destination State field

The other table is my CAPA table and has the following:

  • ID field
  • Short Description field
  • Overall Target Due Date field
  • Overall Completion Date field
  • Status

Here is what I am trying to do via DAX,  I want to create a clousre date where we use the earliest date from the Date Performed field from the audit trail table when that date is > Overall Completion Date field.

 

Any ideas how to do this?

 

1 ACCEPTED SOLUTION
rfigtree
Resolver III
Resolver III

assuming tables linked on id field and the capa table is a Dimention.

 

mClosure:=
CALCULATE(MIN(tblFact[dateperformed]),
          FILTER(tblFact,tblFact[dateperformed]>RELATED(tblDIM[overallcompletiondate]))
          )

 

rfigtree_0-1614755506561.png

 

View solution in original post

1 REPLY 1
rfigtree
Resolver III
Resolver III

assuming tables linked on id field and the capa table is a Dimention.

 

mClosure:=
CALCULATE(MIN(tblFact[dateperformed]),
          FILTER(tblFact,tblFact[dateperformed]>RELATED(tblDIM[overallcompletiondate]))
          )

 

rfigtree_0-1614755506561.png

 

Helpful resources

Announcements
November Fabric Update Carousel

Fabric Monthly Update - November 2025

Check out the November 2025 Fabric 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.

Users online (25)