I have export the GA4 data to Bigquery, however when I compare the event count and user count between GA4 data and Bigquery data, there have a huge different on user count between GA4 and Bigquery. However for other event such as session start or custom event will not have similar issues. Anyone have idea about why?
User Count and Event Count from GA4
User Count and Event Count from Bigquery][
The code I use for BQ is as below:
SELECT event_name, COUNT(*) as event_count, COUNT(DISTINCT(user_pseudo_id)) AS user_id,
FROM
mytable
WHERE event_name = 'page_view'
AND _TABLE_SUFFIX BETWEEN '20230201' AND '20230228'
GROUP BY 1
Also I checked, don't have any NULL value in user_pseudo_id