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 was curious if anyone might have a formula for lapsed buyers that are returning? An example would be patrons who were active through 2019, skipped over a few years with no purchases, but came back and purchased this year.
Chris Wallingford helped me get going with a formula going like below where it was dependent on the fiscal year offset (where in the fiscal year offsets you need to change the filters).
SUM ( [Constituent ID] , IF ( ( ISNULL( ( [Total Ticket Count] , [Season Fiscal Current Year Offset between -4 and -1] )) OR ( [Total Ticket Count] , [Season Fiscal Current Year Offset between -4 and -1]) = 0 ) AND ( [Total Ticket Count] , [Season Fiscal Current Year Offset < -4]) > 0 , 1 , NULL ))
I am wondering if anyone uses something similar for re-engaged buyers or something different from the above. I've noticed this doesn't always work in returning data for me.
Thanks