The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hi Guys,
Do you know if its possible to track which pages users are opening in report on Power BI Report Server?
Thank you.
Regards,
Pawel
There is a way of doing this by creating a measure per page with some specific text -> place the measure in a card on that page -> Make the card "invisible"(white) -> Put the card behind another visualization. The measure will be executed everytime the page loads and you can find the row in the logs by searching for the specific name.
We implemented this in lack of a better solution. Our naming convention for this is Reportname||Pagenamn so for exampel in the report "Sales" on the page "Overview" we created a measure like this:
TraceSalesOverview = "Sales||Overview" (the pipes || are used because it will not be used anywhere in our ordinary measures)
When we want to know how many times a specific page has been used we query the logs WHERE TextData LIKE '%Sales||Overview%'
Not the perfect solution but it works, let's hope MS will make this easier in the future.
Hi Viktor,
Thanks. I have been thinking about similar solution 🙂 Will try it.