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,
I'm having trouble with changing a column reference based on a slicer selection.
The videos and questions, i've seen use SELECTEDVALUES and SWITCH(TRUE() to return an expression.
but i cant seem to return a different slicer selection.
The measure i've trying to make change is
At the moment the formula, i have is this
| Index 1 |
| Index 2 |
| Index 3 |
Solved! Go to Solution.
Hi @Anonymous ,
You need to redo your measure to the following:
Cumulative Growth =
EXP (
SUMX (
FILTER ( ALL ( Rates ), Rates[Year] <= MAX ( Rates[Year] ) ),
VAR Index_Selection =
SELECTEDVALUE ( Table[IndexSelected] )
RETURN
LN (
1
+ SWITCH (
Index_Selection,
1, Rates[ Index 1 ],
2, Rates[ Index 2 ],
3, Rates[ Index 3 ]
)
)
)
)
If this does not work can you share a small sample of your data and expected result
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsHi @Anonymous ,
You need to redo your measure to the following:
Cumulative Growth =
EXP (
SUMX (
FILTER ( ALL ( Rates ), Rates[Year] <= MAX ( Rates[Year] ) ),
VAR Index_Selection =
SELECTEDVALUE ( Table[IndexSelected] )
RETURN
LN (
1
+ SWITCH (
Index_Selection,
1, Rates[ Index 1 ],
2, Rates[ Index 2 ],
3, Rates[ Index 3 ]
)
)
)
)
If this does not work can you share a small sample of your data and expected result
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsThanks,
helped a lot.
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.