Multi-Ticket Buyers

Hello!

Looking for recommendations on the best way to look at STBs that purchased tickets to multiple productions. Ultimately, I'd like to be able to see how many constituents purchased tickets to 3 perfs, 4 perfs, 5 perfs etc. over the course of the season. Then, I'd like to save each as a list so that I can use them in an extraction. 

Thanks!

Michelle

Parents
  • I was pulling some formulas together, and thought I'd made progress, but ran into an issue.

    I modified the Constituent ID formula like so:

    SUM (


    [Constituent ID] ,


    IF ( COUNT( [Performance ID] ) = 1 , 1 , NULL )


    )

    Essentially "Count up the Constituent IDs, where the # of performance IDs = 1". Seems straightforward.

    I scaled this up, using COUNT(Perf ID) = 2, then 3, and so forth. I filtered by our current Timed Admission season.

    However, when I looked at the list of constituents in the (# of perfs = 4+) category, the constituent records didn't bear this out. For one example, their order history returned this:

    There is only 2 entries for performances in 2022GAT (timed admission), and they both are the same performance. Even if both those are counted as a separate perf, they still only totals 2 performances, not 4 or greater.

    Another constituent contained in the 4+ section had this record:

    Several performances, but only 1 in 22Timed Admission.

    Is the formula incorrect? Is it reading things differently? Am I missing something?

  • Hi Nathanael,

    If your widget within which you're using that formula, has Constituent ID on rows, or if you drill into it, then we may not get the results we expect. When that happens, it's due to the use of Constituent ID in the formula breaking out of the Pivot row for Constituent ID, and instead returning results for all constituents. That may not be what you're running into, but it's worth noting.

    If that's not a factor here, then how are you getting from the count of constituents in the Count=4+ to a Constituent ID? 

  • Thanks for the reply! 
    I was able to get an answer back from Support- the lists that get pulled from the widget reflect filters, but not formulas. So the 'list' I was pulling when clicking on the '4+' number was not restricted by the formula- it was pulling in all the constituents based on the filters of the widget itself. It seems if I wanted to pull a list only for '4+', I'd have to set up the filters for it, rather than trying to pull the list based on clicking the formula column.

    Does that sound correct?

Reply
  • Thanks for the reply! 
    I was able to get an answer back from Support- the lists that get pulled from the widget reflect filters, but not formulas. So the 'list' I was pulling when clicking on the '4+' number was not restricted by the formula- it was pulling in all the constituents based on the filters of the widget itself. It seems if I wanted to pull a list only for '4+', I'd have to set up the filters for it, rather than trying to pull the list based on clicking the formula column.

    Does that sound correct?

Children