Forum Discussion
Problem with bookmark navigator button in Power BI Service
bernardoamaral - Its better to create ref table and use that to capture the user selections.
1) Create a simple static table. Add this as a slicer on the report and hide it.
2. Now update your bookmark for showing Column chart to include the Chart type slicer. But make sure you select 'Column' as the chart type. Vice versa for the Pie chart.
3. Create a measure to capture the chart type selection.
If( selectedvalue(charttype[charttype] = "Column", 1, 0)
4) Now use this measue to conditionally format your buttons.
This way you can always show the correct selections on the buttons. Hope this helps !
Did I answer your question? Mark my post as a solution! If not, please feel free to ask me.
Also, I would ❤ Kudos if my solution helped. It is a token of appreciation!
Thank you very much !
gauthamboppana Thank you for the response.
This was an example that I made to show that there is a problem with the bookmark navigator buttons.
I appreciate your backup solution, but unfortunately this is not a solution for the problem I'm having. I'm working in a report (not this one, this one is just an example) that I need to embeed into another platform, and depending on the user, I must alternate the bookmark vision.