Forum Discussion
Sara_J
4 years agoFrequent Visitor
Dynamic Text displays the table name when using Field Parameter
Hi,
I used the new feature 'Field Parameter' and created a slicer with few metrics. I have a graph and need to place the metric name on x and y axis to dynamically display the metric name as selected.
Field to be used as slicer Y1_metrics : %change
Vol
Dynamic text code is
Y axis label = selectedvalue('Y1_Metrics'[Y1 metrics Fields])
Using a shape text function to choose the field Y axis label , this instead of displaying %change shows as Y1_Metrics[%change]
could this be a limitation?
Thanks,
Sara
Sara_J , Try like
What is selected = maxx(filter('Axis Slicer', 'Axis Slicer'[Axis Slicer Order]= SELECTEDVALUE('Axis Slicer'[Axis Slicer Order])),'Axis Slicer'[Axis Slicer])
refer
2 Replies
- amitchandakSuper User
Sara_J , Try like
What is selected = maxx(filter('Axis Slicer', 'Axis Slicer'[Axis Slicer Order]= SELECTEDVALUE('Axis Slicer'[Axis Slicer Order])),'Axis Slicer'[Axis Slicer])
refer
- Sara_JFrequent Visitor
Thank you! It worked.