Forum Discussion

Elisa112's avatar
Elisa112
Icon for Helper V rankHelper V
1 year ago
Solved

Analysing Assessment results

Hi Experts Im trying analyse student assessment results but I just cant get my head around, I can easily visualise the results, however I need to find the number of students with increased scores to...
  • grazitti_sapna's avatar
    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!