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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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
Super User
Super User

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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.