Google Analytics 'User Count' not Matching Big Query 'User Count'

百般思念 提交于 2019-12-05 22:50:35

Update:

We have Premium Analytics, as @Pentium10 suggested. So, I reached out to their paid support.

Now when I pull the exact same data from GA, I get this:

Looks to me like GA has now fixed the issue.

Without actually admitting there ever was one.

::shrug::

I have this problem before. The way I fixed it was by using COUNT(DISTINCT FULLVISITORID) for total_users.

In standard SQL use COUNT(DISTINCT fullVisitorId) Google Analytics shows an approximation for users, Big Query is exact. You can test this with unsampled reports in Google Analytics - numbers will match.

Also: GA uses all available data to count users, even where totals.visits is NULL! In contrast GA counts sessions only where totals.visits = 1!

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!