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! Learn more
Solved! Go to Solution.
Hi @Anonymous,
So when the user select month April and year 2018 subtract 0.01% from measure and when user select Sept 2018 add 0.01% to current measure that's it.
For your scenario, it seems that we could add the if function in the measure which works out the organic growth YTD to determine if the slicers are filtered.
You could refer to the formula below.
Add amd subtract from a measure based on slicer selectuon =
VAR selectyear =
SELECTEDVALUE ( Sheet13[Date].[Year] )
VAR selectmonth =
SELECTEDVALUE ( Sheet13[Date].[Month] )
RETURN
IF (
selectyear = 2018
&& selectmonth = "April",
[Measure] - 0.01,
IF (
selectyear = 2018
&& selectmonth = "September",
[Measure] + 0.01,
[Measure]
)
)
If you still need help, please share your data sample and your desired output so that we could help further on it.
Best Regards,
Cherry
Hi @Anonymous,
So when the user select month April and year 2018 subtract 0.01% from measure and when user select Sept 2018 add 0.01% to current measure that's it.
For your scenario, it seems that we could add the if function in the measure which works out the organic growth YTD to determine if the slicers are filtered.
You could refer to the formula below.
Add amd subtract from a measure based on slicer selectuon =
VAR selectyear =
SELECTEDVALUE ( Sheet13[Date].[Year] )
VAR selectmonth =
SELECTEDVALUE ( Sheet13[Date].[Month] )
RETURN
IF (
selectyear = 2018
&& selectmonth = "April",
[Measure] - 0.01,
IF (
selectyear = 2018
&& selectmonth = "September",
[Measure] + 0.01,
[Measure]
)
)
If you still need help, please share your data sample and your desired output so that we could help further on it.
Best Regards,
Cherry
Many Thanks Cherry, excellent feedback as always
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.