Forum Discussion
Sonnet
Helper I
3 years agoUsing ISSELECTEDMEASURE to navigate to two different drill through pages
Hi, I have a main page for the report and two for drillthrough. I am using the following measure on the action of a button to navigate to different drill through pages if I select a visual with one m...
Mahesh0016
Super User
3 years agoSonnet I hope this helps you!!Thank You!!
Drillthrough filter =
VAR SelectedMeasure =
SELECTEDVALUE('Risk'[Selected Measure])
RETURN
SWITCH (
SelectedMeasure,
"Mitigated Risks", "Page 5",
"Total Open Risks", "Page 4",
""
)
Sonnet
Helper I
3 years agoThank you for your help. When I use your measure, the SelectedValue function wants a column. You use '
'Risk'[Selected Measure]
what is 'Selected Measure'?
Meanwhile, I am trying to play with your measure, trying to find a working way.