The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
How to subtract the responding value from the average score in 2021(In this small sanmple data,i.e average of bolding numbers) for all Name
sample data:
Name | id | Date | Score |
A | 1 | 1/9/2021 | 6 |
B | 1 | 1/7/2021 | 7 |
C | 1 | 2/8/2021 | 8 |
A | 2 | 1/8/2022 | 9 |
B | 2 | 1/6/2022 | 10 |
expected outcome:
-1 |
0 |
1 |
2 |
3 |
Solved! Go to Solution.
Hi,
Please check the below picture and the attached pbix file.
Expected outcome measure: =
VAR _avg2021 =
AVERAGEX (
ADDCOLUMNS (
FILTER ( ALL ( Data ), YEAR ( Data[Date] ) = 2021 ),
"@score", [Score measure:]
),
[@score]
)
RETURN
IF ( HASONEVALUE ( Data[Name] ), [Score measure:] - _avg2021 )
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
Hi,
Please check the below picture and the attached pbix file.
Expected outcome measure: =
VAR _avg2021 =
AVERAGEX (
ADDCOLUMNS (
FILTER ( ALL ( Data ), YEAR ( Data[Date] ) = 2021 ),
"@score", [Score measure:]
),
[@score]
)
RETURN
IF ( HASONEVALUE ( Data[Name] ), [Score measure:] - _avg2021 )
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
User | Count |
---|---|
119 | |
87 | |
75 | |
55 | |
44 |
User | Count |
---|---|
135 | |
125 | |
78 | |
64 | |
63 |