Hello! I know there are a lot of questions about analyzing first-time buyers... what I'm trying to figure out is how I would build a dashboard to analyze the makeup of a particular performance or season: how many first-time buyers vs. returning visitors. Does anyone currently do something like this? And if so could you share your dashboard or setup? Thank you!!
Edited to add I'm hoping there's a non-SQL way to get there :)
I initially thought so too, however our 22 season is pulling more returning buyers than the NTF within one season.
Formulas are as follows
# NTF
COUNT ( [Constituent ID] , IF ( MIN( DDIFF ( [Days in Date] , [Days in First Performance Date] ) ) = 0 , MAX ( [Constituent ID] ) , NULL ))
# of Returning
COUNT ([Constituent ID]) -COUNT([Constituent ID] , IF( Min (DDIFF ([Days in Date] , [Days in First Performance Date]) ) = 0 , MAX ([Constituent ID]) , NULL ) )
Hi Hanna,
The best way to audit this might be to create a pivot widget filtered to that season, with Constituent ID on rows, and a value for:
IF (MIN( DDIFF ( [Days in Date] , [Days in First Performance Date] ) ) = 0, 1, 0)
Then from that value, hover and filter the widget to just the 1s and see how many rows (constituents) you have. Spot check some constituents in Tessitura. Then flip the filter to just the 0s and see how many rows you have, and spot check again.