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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
jabbajuice08
Frequent Visitor

Return a value based on the latest date into my matrix

I need to grab the first ID # value in a drillthrough list (task with the latest finish date) and bring it into my matrix. I tried:

 

 

 

calc column = 
CALCULATE(
   FIRSTNONBLANK( Tbl1[ID#] ),1 ), 
   FILTER( ALL ( Tbl2, Tbl2[HO Link #] = Tbl1[ID#] ) 
)

 

 

 However, this is only bringing in the first value that is listed alphabetically. I need the first value that has the latest finish date of each group of tasks (this is based on drilling through each unique ID # to find the list of ID #'s associated with that parent ID).

1 REPLY 1
v-rzhou-msft
Community Support
Community Support

Hi @jabbajuice08 ,

 

Please try this code to create a calculated column.

calc column =
VAR _LASTFINISHDATE =
    CALCULATE ( MAX ( Tbl1[Finish Date] ), ALLEXCEPT ( Tbl1, Tbl1[ID#] ) )
RETURN
    CALCULATE (
        FIRSTNONBLANK ( Tbl1[ID#], 1 ),
        FILTER ( ALL ( Tbl2 ), Tbl2[HO Link #] = Tbl1[ID#] ),
        FILTER ( Tbl1, Tbl1[Finish Date] = _LASTFINISHDATE )
    )

If this reply still couldn't help you solve your issue, please share a sample file with me and show me a screenshot with the result you want. 

 

Best Regards,
Rico Zhou

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.