Hi all again.
I come from this question: https://experienceleaguecommunities.adobe.com/t5/adobe-analytics-questions/adobe-data-feeds-first-la...
I´m trying to calculate 'Single Page Visits' Metric in Adobe Data Feeds. I realized that visit_page_num is based on Hit and non in the Page Navigation. So I´m searching any way to workaround this metric in the Data Feeds, using DISTINCT(post_prop1) for visit, but I don't get the same results.
Do you know any way to calculate when a Visit goes to another page?
Update (cos I can't reply) @Jennifer_Dungan . I've tried what you mentioned and still does not work. Let me please show you the SQL and the filter
with unique_visitors as
(
select distinct post_visid_high||post_visid_low visit_id, count(distinct(post_evar20)) page_visits, max(cast(visit_num as int)) max_visit_num
from daci_privatespace.adobe_datafeeds
where
reference_date >= date('2022-09-01') and reference_date <= date('2022-09-01')
and exclude_hit = '0'
and hit_source not in (5,7,8,9)
and post_page_url is null and post_page_url is null
group by 1
)
select count(visit_id) from unique_visitors
where max_visit_num = 1 and page_visits = 1
Second edit:
I am trying to select those visitors who make a single visit and with a single hit, i.e. to select any visitor who has a single visit and does not navigate (i.e. stays on the first page they reach).
In the case that a person who is in this segment, but makes another moment a second visit, I understand that this filter would no longer apply to him, since it would be modified retroactively.
The first part of the filter, i.e. the selection of those visitors with unique visit whose condition max_visit_num = 1 --> max(cast(visit_num as int)) max_visit_num, works correctly. It is the selection of those who do not browse that is driving me crazy.