Forum Discussion
Analysing Assessment results
- 1 year ago
Hi Elisa112,
You can achieve it by creating below Measures:-
Calculate first assessment score:-
First Assessment Score =
CALCULATE(
MAX(AssessmentValue[AssessmentValue]),
Assessment[Assessment Stage] = "First Assessment"
)Calculate review assesment score:-
Review Assessment Score =
CALCULATE(
MAX(AssessmentValue[AssessmentValue]),
Assessment[Assessment Stage] = "First Assessment Review"
)Now create distance travelled:-
Distance Travelled =
[Review Assessment Score] - [First Assessment Score]๐ I hope this solution helps you unlock your Power BI potential! If you found it helpful, click 'Mark as Solution' to guide others toward the answers they need.
๐ก Love the effort? Drop the kudos! Your appreciation fuels community spirit and innovation.
๐ As a proud SuperUser and Microsoft Partner, weโre here to empower your data journey and the Power BI Community at large.
๐ Curious to explore more? [Discover here].
Letโs keep building smarter solutions together!
Hi Elisa112,
You can achieve it by creating below Measures:-
Calculate first assessment score:-
First Assessment Score =
CALCULATE(
MAX(AssessmentValue[AssessmentValue]),
Assessment[Assessment Stage] = "First Assessment"
)
Calculate review assesment score:-
Review Assessment Score =
CALCULATE(
MAX(AssessmentValue[AssessmentValue]),
Assessment[Assessment Stage] = "First Assessment Review"
)
Now create distance travelled:-
Distance Travelled =
[Review Assessment Score] - [First Assessment Score]
๐ I hope this solution helps you unlock your Power BI potential! If you found it helpful, click 'Mark as Solution' to guide others toward the answers they need.
๐ก Love the effort? Drop the kudos! Your appreciation fuels community spirit and innovation.
๐ As a proud SuperUser and Microsoft Partner, weโre here to empower your data journey and the Power BI Community at large.
๐ Curious to explore more? [Discover here].
Letโs keep building smarter solutions together!
Thank you, this has helped me,
Much appreciated