Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
micer
New Member

New Usage Metrics Report - page views

Hi all,

 

I am trying to get the report page views out of the new Usage Metrics Report. I connected to the dataset to get more detailed information about the page views, but the numbers i am getting do not seem correct.

 

I need to create a table with the date, report name, page name, viewer name and views count. I noticed that there are 2 tables for views - Report Views and Report Page Views.

The report views table does not contain any information about the page.

The report page views table seems to be missing some information about the report views.

 

I created a measure to count the report views - one report opening means one person opened the report at least once during one day.

I added this measure to the Report Views:

ReportOpening = SUMX(SUMMARIZE('Report views', 'Report views'[Date], 'Report views'[ReportId], 'Report views'[UserId], "Count", 1), [Count])
And this to Report Page Views:
ReportOpening2 = SUMX(SUMMARIZE('Report page views', 'Report page views'[Date], 'Report page views'[ReportId], 'Report page views'[UserKey], "Count", 1), [Count])
 
The result with Report Name only:
micer_1-1760093017034.png

So my question is, is it possible that the report page views does not contain all of the information? Is there a way to create a table I described please?

2 REPLIES 2
v-achippa
Community Support
Community Support

Hi @micer,

 

Thank you for reaching out to Microsoft Fabric Community.

 

The difference here is expected.

  • The Report views table logs when a user opens a report like one entry per user per day.
  • The Report page views table logs when pages are loaded inside that report.

Page level telemetry is collected on the client and sometimes can be missing due to network issues, ad-blockers, switching pages without a server request, embedded/publish scenarios or tenant settings such as per user data or private link. Because of that Report page views can show lower numbers than Report views.

 

So yes, the Report page views table can miss some information. Please follow below steps:

  • If you want a table with date, report name, page name, viewer and view count, use only the Report page views table and this below measure:
    PageViews = COUNTROWS('Report page views')
  • If you want to count how many users opened the report like regardless of pages viewed, use Report views:
    ReportOpenings = DISTINCTCOUNT('Report views'[UserId])

 

Thanks and regards,

Anjan Kumar Chippa

Hi @micer,

 

As we haven’t heard back from you, we wanted to kindly follow up to check if the solution I have provided for the issue worked? or let us know if you need any further assistance.

 

Thanks and regards,

Anjan Kumar Chippa

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors