Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
I have the following page in Power BI Service:
The buttons alternate the Column Chart with the Pie Chart (it's a bookmark navigator button):
My question is: Why when I refresh the page with the bookmark active, the button resets to the Column Chart, but the graph appearing is the pie Chart. Does anybody knows the answer to this?
Thank you
Hi, @bernardoamaral ;
I tested the bookmark plus button and it is normal, unable to reproduce your problem, can you share your simple file? And how you refresh it.
How to upload PBI in Community
Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@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.