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

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
pbrainard
Helper III
Helper III

MIN and MAX Dates (and Scores) in Calculated Table

I have a bunch of rows that contain Assessment Dates and Scores.

I want to create a calculated table that pulls the MIN Date and score, and MAX Date and score for each client.

I created a caclulated table that gets the MIN and MAX Dates, but not sure how to pull the associated scores in too.

 

Here's the table calc bringing in the dates:

 

Table =
SUMMARIZE (
'GAD_PHQ',
GAD_PHQ[Client_ID],
GAD_PHQ[Full_Name],
"Start Date", MIN ( GAD_PHQ[Assess_Date] ),
"End Date", MAX ( GAD_PHQ[Assess_Date] )
1 ACCEPTED SOLUTION
CNENFRNL
Community Champion
Community Champion

 

Table =
ADDCOLUMNS(
    SUMMARIZECOLUMNS(
        GAD_PHQ[Client_ID],
        "Start Date", MIN( GAD_PHQ[Assess_Date] ),
        "End Date", MAX( GAD_PHQ[Assess_Date] )
    ),
    "Start Score",
        CALCULATE(
            AVERAGE( GAD_PHQ[Assess_Score] ),
            GAD_PHQ[Assess_Date] = EARLIER( [Start Date] )
        ),
    "End Score",
        CALCULATE(
            AVERAGE( GAD_PHQ[Assess_Score] ),
            GAD_PHQ[Assess_Date] = EARLIER( [End Date] )
        )
)

 


Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension!

DAX is simple, but NOT EASY!

View solution in original post

3 REPLIES 3
CNENFRNL
Community Champion
Community Champion

 

Table =
ADDCOLUMNS(
    SUMMARIZECOLUMNS(
        GAD_PHQ[Client_ID],
        "Start Date", MIN( GAD_PHQ[Assess_Date] ),
        "End Date", MAX( GAD_PHQ[Assess_Date] )
    ),
    "Start Score",
        CALCULATE(
            AVERAGE( GAD_PHQ[Assess_Score] ),
            GAD_PHQ[Assess_Date] = EARLIER( [Start Date] )
        ),
    "End Score",
        CALCULATE(
            AVERAGE( GAD_PHQ[Assess_Score] ),
            GAD_PHQ[Assess_Date] = EARLIER( [End Date] )
        )
)

 


Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension!

DAX is simple, but NOT EASY!

Is there a way to add an additional filter so the results show Start Date and Score, End Date and Score, per Client ID AND Assessment Type? Right now, it's pulling Start and End per Client ID only.

tackytechtom
Most Valuable Professional
Most Valuable Professional

Hi @pbrainard ,

 

How about this one:

CalculatedTable =
SUMMARIZE (
   'GAD_PHQ',
   'GAD_PHQ'[Client_ID],
   'GAD_PHQ'[Full_Name],
   "Start Date", MIN ( 'GAD_PHQ'[Assess_Date] ),
   "Start Date Score", CALCULATE ( MAX ( 'GAD_PHQ'[Score] ), FILTER ( 'GAD_PHQ', 'GAD_PHQ'[Assess_Date] = MIN ( 'GAD_PHQ'[Assess_Date] ) ) ),
   "End Date",   MAX ( 'GAD_PHQ'[Assess_Date] ),
   "End Date Score",   CALCULATE ( MAX ( 'GAD_PHQ'[Score] ), FILTER ( 'GAD_PHQ', 'GAD_PHQ'[Assess_Date] = MAX ( 'GAD_PHQ'[Assess_Date] ) ) )
)

 

Does this work for you? 🙂

 

/Tom
https://www.tackytech.blog/
https://www.instagram.com/tackytechtom/



Did I answer your question➡️ Please, mark my post as a solution ✔️

Also happily accepting Kudos 🙂

Feel free to connect with me on LinkedIn! linkedIn

#proudtobeasuperuser 

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

Check out the February 2026 Power BI update to learn about new features.

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.