<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Track page open by user in Power BI Report on PBIRS in Report Server</title>
    <link>https://community.fabric.microsoft.com/t5/Report-Server/Track-page-open-by-user-in-Power-BI-Report-on-PBIRS/m-p/849082#M12188</link>
    <description>&lt;P&gt;There is a way of doing this by creating a measure per page with some specific text -&amp;gt; place the measure in a card on that page -&amp;gt; Make the card "invisible"(white) -&amp;gt; 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.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;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:&lt;BR /&gt;TraceSalesOverview = "Sales||Overview" (the pipes || are used because it will not be used anywhere in our ordinary measures)&lt;BR /&gt;&lt;BR /&gt;When we want to know how many times a specific page has been used we query the logs WHERE TextData LIKE '%Sales||Overview%'&lt;BR /&gt;&lt;BR /&gt;Not the perfect solution but it works, let's hope MS will make this easier in the future.&lt;/P&gt;</description>
    <pubDate>Mon, 18 Nov 2019 15:13:34 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2019-11-18T15:13:34Z</dc:date>
    <item>
      <title>Track page open by user in Power BI Report on PBIRS</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Track-page-open-by-user-in-Power-BI-Report-on-PBIRS/m-p/847390#M12177</link>
      <description>&lt;P&gt;Hi Guys,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Do you know if its possible to track which pages users are opening in report on Power BI Report Server?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Pawel&lt;/P&gt;</description>
      <pubDate>Fri, 15 Nov 2019 11:00:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Track-page-open-by-user-in-Power-BI-Report-on-PBIRS/m-p/847390#M12177</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-11-15T11:00:13Z</dc:date>
    </item>
    <item>
      <title>Re: Track page open by user in Power BI Report on PBIRS</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Track-page-open-by-user-in-Power-BI-Report-on-PBIRS/m-p/848708#M12184</link>
      <description>I don't believe this is possible. Once the report has loaded for the user, I believe it runs in cache. It would need some kind of "on click" trigger to be added into PowerBI and AFAIK there is no way to implement something that executes a stored procedure each time a page loads so no way to write out to a log DB.&lt;BR /&gt;&lt;BR /&gt;It is maybe possible to split the pages into individual reports, put a link in the reports to each one. Then you'll get a history showing up in the ReportServer database in SQL server.</description>
      <pubDate>Mon, 18 Nov 2019 08:53:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Track-page-open-by-user-in-Power-BI-Report-on-PBIRS/m-p/848708#M12184</guid>
      <dc:creator>RobThrive</dc:creator>
      <dc:date>2019-11-18T08:53:46Z</dc:date>
    </item>
    <item>
      <title>Re: Track page open by user in Power BI Report on PBIRS</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Track-page-open-by-user-in-Power-BI-Report-on-PBIRS/m-p/849082#M12188</link>
      <description>&lt;P&gt;There is a way of doing this by creating a measure per page with some specific text -&amp;gt; place the measure in a card on that page -&amp;gt; Make the card "invisible"(white) -&amp;gt; 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.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;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:&lt;BR /&gt;TraceSalesOverview = "Sales||Overview" (the pipes || are used because it will not be used anywhere in our ordinary measures)&lt;BR /&gt;&lt;BR /&gt;When we want to know how many times a specific page has been used we query the logs WHERE TextData LIKE '%Sales||Overview%'&lt;BR /&gt;&lt;BR /&gt;Not the perfect solution but it works, let's hope MS will make this easier in the future.&lt;/P&gt;</description>
      <pubDate>Mon, 18 Nov 2019 15:13:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Track-page-open-by-user-in-Power-BI-Report-on-PBIRS/m-p/849082#M12188</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-11-18T15:13:34Z</dc:date>
    </item>
    <item>
      <title>Re: Track page open by user in Power BI Report on PBIRS</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Track-page-open-by-user-in-Power-BI-Report-on-PBIRS/m-p/849089#M12189</link>
      <description>&lt;P&gt;Hi Viktor,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks. I have been thinking about similar solution &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; Will try it.&lt;/P&gt;</description>
      <pubDate>Mon, 18 Nov 2019 15:16:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Track-page-open-by-user-in-Power-BI-Report-on-PBIRS/m-p/849089#M12189</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-11-18T15:16:19Z</dc:date>
    </item>
  </channel>
</rss>

