Sales Curve 2 weeks prior to event

Hello!

I am a Tessitura analytics newbie. I am trying to create a sales curve graph with the number of tickets sold in the last two weeks leading up to an event. When I filter for 14 days prior to the event, the ticket count starts at 0. Is it possible to have the ticket count begin at the amount of tickets which were previously sold? In the example below, the second graph should start at 178 tickets instead of 0.

Thanks so much!

Here is a graph of all sales:

Here is a graph of the last two weeks leading up to the event.:

Parents
  • Hi Aaron,

    You can add a filter on [Seat Sold Flag] = Y to eliminate those 1/1/1900 results for unsold seats.

    To get the -14 day to include all prior sales, use a case statement such as this...

    RSUM (
      CASE WHEN MAX( [Order Days Prior to Performance] ) = -14 THEN ( [Total Ticket Count] , [Order Days Prior to Performance <= -14] )
         WHEN MAX( [Order Days Prior to Performance] ) = 0 THEN ( [Total Ticket Count] , [Order Days Prior to Performance >= 0] )
         ELSE [Total Ticket Count] END
    )

    In the results for Day = -14 this overrides the Order Days filter and includes all days before or on 14 days Prior to Performance. Just in case there are any orders after the Performance Date, the results for Day = 0 include the Order Days 0 or later. Otherwise it just includes the ticket count for the given day prior to performance.

  • I added this formula in but the X axis is now showing from the first sale leading up to the performance. I am hoping to only show the final 2 weeks leading up to a performance. Order days up to the performance on the X axis also didn't work. Here is what the graph looks like.

Reply Children