Accurate Paid/Reserved Count in Analytics

This is kind of specific, but I need to get a ticket count by zone for specific performances, and I cannot get anything other than 0.  Someone smart (not me) changed the formula for this:

in my weekly single ticket report to this:

which gives me a number that basically matches the numbers in the ticket sales reports.

However, I cannot figure out how they did it.  I'm trying to create a report that will show me ticket counts by zone, but my options seem to be SUM[Ticket Paid/Reserved Count], which gives me a value of 0 for every zone, COUNT[Ticket Paid/Reserved Count], which gives me a value of 1 for every zone, and DUPCOUNT[Ticket Paid/Reserved Count], which seems to give me every seat in the zone regardless of payment/hold/other status.

I tried changing the COUNT to [# of unique SLI ID], but I got a function syntax error:  Unrecognized metadata identifier '[# of unique SLI ID]'

I do not know SQL, so I apologize for my ignorance, but I really just need to know how to get Analytics to show the actual number of tickets that have been either paid in full or reserved with a balance due.  (I would settle for just paid in full - I am getting the same errors.)  Anyone able to help?

Parents
  • If you're looking for the total count of tickets reserved, would SUM(Ticket Count) work? This would take into account paid and unpaid tickets- anything that was reserved.


    You could then add a row for 'Zone' or 'Zone ID', and it should slice out correctly.

    To re-create the formula you gave, I think it'd be this:

    Does that help? 


Reply
  • If you're looking for the total count of tickets reserved, would SUM(Ticket Count) work? This would take into account paid and unpaid tickets- anything that was reserved.


    You could then add a row for 'Zone' or 'Zone ID', and it should slice out correctly.

    To re-create the formula you gave, I think it'd be this:

    Does that help? 


Children