First-time buyers in a pie chart

Hi friends,

I'm trying to create a pie chart to display "first time buyers" and "everyone else" who purchased tickets for a specific concert, but sure can't figure out how. Any thoughts?

Thanks for being smart!

Lesley

Parents Reply
  • Hey folks,

    Madeline's formula is great, just thought I'd suggest the following too if it can work for you, as checking the difference between first performance date and performance date saves you from having to change the First Performance filter for each production. 

    COUNT ( [Constituent ID],
    if ( MIN ( DDIFF ( [Days in Date] , [Days in First Performance Date] ) ) = 0
    , MAX ( [Constituent ID] )
    , NULL
    )
    )

    Thanks,

    Carlo

Children