Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
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:
Solved! Go to Solution.
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! |
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.
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! | |
| #proudtobeasuperuser | |
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Experience the highlights from FabCon & SQLCon, available live and on-demand starting April 14th.
| User | Count |
|---|---|
| 48 | |
| 46 | |
| 41 | |
| 20 | |
| 17 |
| User | Count |
|---|---|
| 70 | |
| 67 | |
| 32 | |
| 27 | |
| 26 |