Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
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.