-
Investigating Discrepancies between BigQuery and GA4 Data
Hey, I’ve been scratching my head trying to understand where the discrepancy between GA4 and UA data session volumes is coming from. For example, on March 21, 2023, I counted
104 Sessions in UA,
while there were
331 sessions in GA4.
Quite a puzzle, right?Then I dived into BigQuery, attempted some methodologies I found online. Still, I was nowhere near that 331 sessions number in GA4.
Here are the queries I played with:count(distinct concat(user_pseudo_id,(select value.int_value from unnest(event_params) where key = 'ga_session_id'))) as sessions, count(distinct concat(user_id,(select value.int_value from unnest(event_params) where key = 'ga_session_id'))) as sessions
The first try yielded 175, and the second one got as close as 278. Still, it’s not 331, is it?
So, I’m wondering if any of you might know something I don’t. Appreciate any help!
Log in to reply.