Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. 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.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 55 | |
| 34 | |
| 32 | |
| 19 | |
| 17 |
| User | Count |
|---|---|
| 75 | |
| 72 | |
| 38 | |
| 35 | |
| 25 |