Merged PR 5333: Reporting version of Stay Disrupt Conversion Funnel
# Description Reporting version of Stay Disrupt Conversion Funnel. It's just a copy from the intermediate model. # Checklist - [X] The edited models and dependants run properly with production data. - [X] The edited models are sufficiently documented. - [X] The edited models contain PK tests, and I've ran and passed them. - [X] I have checked for DRY opportunities with other models and docs. - [X] I've picked the right materialization for the affected models. # Other - [ ] Check if a full-refresh is required after this PR is merged. Related work items: #30277
This commit is contained in:
parent
5ddba42e12
commit
a9a1e68624
2 changed files with 142 additions and 0 deletions
16
models/reporting/general/stay_disrupt_conversion_funnel.sql
Normal file
16
models/reporting/general/stay_disrupt_conversion_funnel.sql
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
with
|
||||
int_stay_disrupt_conversion_funnel as (
|
||||
select * from {{ ref("int_stay_disrupt_conversion_funnel") }}
|
||||
)
|
||||
select
|
||||
month_start_date,
|
||||
guest_product_name,
|
||||
guest_product_latest_display_name,
|
||||
count_active_accounts,
|
||||
count_active_accounts_with_guest_product_offered,
|
||||
count_active_accounts_with_guest_product_payments,
|
||||
count_guest_journeys_started,
|
||||
count_guest_journeys_started_with_guest_product_offered,
|
||||
count_guest_product_payments,
|
||||
sum_amount_paid_without_taxes_in_gbp
|
||||
from int_stay_disrupt_conversion_funnel
|
||||
Loading…
Add table
Add a link
Reference in a new issue