Querying Hit Depth and Entry Page
I am trying to query my data feed to exclude entry pages, but am coming up with a discrepancy and would appreciate any advice.
The result of the code below is 125229. This matches the hit depth dimension shown below.
select
count(distinct(
case when visit_page_num = 1 and post_evar4 like '%account.box%' then concat(post_visid_high,post_visid_low) end))
FROM `adobe.adobe_data`
where date_trunc(date_time,month) = '2025-02-01' and exclude_hit = 0
However, when I change the query to visit_page_num <> 1 (exclude entry), I get a value of 195904, which is very different from 105,959.
select
count(distinct(
case when visit_page_num <> 1 and post_evar4 like '%account.box%' then concat(post_visid_high,post_visid_low) end))
FROM `adobe.adobe_data`
where date_trunc(date_time,month) = '2025-02-01' and exclude_hit = 0
Account.box Segment = Contains 'account.box' (hit)
Entry Page <> account.box Segment = Exclude hit where entry page contains account.box
Can anyone explain why these numbers are different and if I should be considering another query?

