Hello! We're still fairly new to Tessitura so I'm still learning my way around the system.
I'm interested in creating a report that shows me what else attendees of a certain performance have purchased in the past - so for example, 25% of ticket buyers for XYZ upcoming show also attended ZYX past show. That gives me an idea of what shows to target, based on crossover/affinity.
Does anyone else look at this, either in Reports or Analytics? Thanks for your thoughts!
This is awesome, thanks Chris! How can I exclude the -999999 constituent ID from the advanced attribute filter?
Two approaches Gabrielle,
We can use a field other than Constituent ID that will remove that -999999 placeholder. For example, CONSTITUENT Type will equal (none) on that constituent,
so setting another filter on your dashboard or widget that excludes only (none) will pair well with your attribute filter.
Alternatively, just because this is handy to know, advanced filters support getting pretty dense with nested AND / OR groupings, generally formatted as
{ "or":[ { //critera1// }, { //critera2// } ]}
To uncover the advanced code for any given standard filter, you can click from the desired filter to the Advanced tab and lift the code from there. For example, for Constituent ID <> -999999.
===>
Assembling an AND filter on Constituent ID with the attribute bits from my previous post might look like this:
{ "and": [ { "attributes": [ { "dim": "[PERFORMANCE DETAIL.Production Season]", "filter": { "members": [ "Chicago 2020" ] } } ] }, { "explicit": false, "multiSelection": true, "exclude": { "members": [ "-999999" ] } } ], "custom": true }
Oh the Pandora's box you just opened in my brain.