Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi All,
In matrix am unable to show measures(measures are YOY DIFF and YOY%change) based on slicer selction which contains Year 1 and Year 2.
But my visual also contains two values which are directly coming from tables(system total and No/yes. Am able to show these values based on slicer selction
Check these measures
Solved! Go to Solution.
Hi @Anonymous
Not very sure what's your data and what's your expected result, so I made a little change on your measure, please try this
Legacy_Final_Fee_Diff =
VAR lastSelectedYear =
CALCULATE (
MAX(res_lv2[DATE_COLUMN]),
FILTER (
ALL(res_lv2),
YEAR(res_lv2[DATE_COLUMN])< YEAR( MIN ( res_lv2[DATE_COLUMN] ))
)
)
VAR lastSelectedYears =
CALCULATE (
SUM ( res_lv2[legacy_final_fee] ),
FILTER (
ALL ( res_lv2),
YEAR(res_lv2[DATE_COLUMN])<= YEAR(lastSelectedYear)
)
)
RETURN lastSelectedYearsFinal_Fee YOY % Diff =
VAR lastSelectedYear =
CALCULATE (
MAX(res_lv2[DATE_COLUMN]),
FILTER (
ALL(res_lv2),
YEAR(res_lv2[DATE_COLUMN])< YEAR( MIN ( res_lv2[DATE_COLUMN] ))
)
)
VAR lastSelectedYears =
CALCULATE (
SUM ( res_lv2[legacy_final_fee] ),
FILTER (
ALL ( res_lv2),
YEAR(res_lv2[DATE_COLUMN])<= YEAR(lastSelectedYear)
)
)
RETURN
IFERROR (
IF (
ISBLANK ( lastSelectedYears ),
BLANK (),
( SUM ( res_lv2[legacy_final_fee] ) - lastSelectedYears ) / lastSelectedYears
),
0
)
Best Regards,
Community Support Team _Tang
If this post helps, please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous
Hope you are doing well.
Can we close this thread now if there is no other question? It would be nice if you can accpet my answer as the solution. Thanks 🙂
Best Regards,
Community Support Team _Tang
If this post helps, please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous
Hope you are doing well.
Can we close this thread now if there is no other question? It would be nice if you can accpet my answer as the solution. Thanks 🙂
Best Regards,
Community Support Team _Tang
If this post helps, please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous
Not very sure what's your data and what's your expected result, so I made a little change on your measure, please try this
Legacy_Final_Fee_Diff =
VAR lastSelectedYear =
CALCULATE (
MAX(res_lv2[DATE_COLUMN]),
FILTER (
ALL(res_lv2),
YEAR(res_lv2[DATE_COLUMN])< YEAR( MIN ( res_lv2[DATE_COLUMN] ))
)
)
VAR lastSelectedYears =
CALCULATE (
SUM ( res_lv2[legacy_final_fee] ),
FILTER (
ALL ( res_lv2),
YEAR(res_lv2[DATE_COLUMN])<= YEAR(lastSelectedYear)
)
)
RETURN lastSelectedYearsFinal_Fee YOY % Diff =
VAR lastSelectedYear =
CALCULATE (
MAX(res_lv2[DATE_COLUMN]),
FILTER (
ALL(res_lv2),
YEAR(res_lv2[DATE_COLUMN])< YEAR( MIN ( res_lv2[DATE_COLUMN] ))
)
)
VAR lastSelectedYears =
CALCULATE (
SUM ( res_lv2[legacy_final_fee] ),
FILTER (
ALL ( res_lv2),
YEAR(res_lv2[DATE_COLUMN])<= YEAR(lastSelectedYear)
)
)
RETURN
IFERROR (
IF (
ISBLANK ( lastSelectedYears ),
BLANK (),
( SUM ( res_lv2[legacy_final_fee] ) - lastSelectedYears ) / lastSelectedYears
),
0
)
Best Regards,
Community Support Team _Tang
If this post helps, please consider Accept it as the solution to help the other members find it more quickly.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.