How do I show the first perf and the last perf in a production season?

Hi everyone,

I'm working on a pivot table to replace/revamp a report that goes out right now. One of the big asks is that the report shows the first perf date and last perf date of each production season. So it would look like the attached image but before the ticket counts and dollar amounts there would be a column for first perf and last perf. I'm stumped! Has anyone been able to make this happen?

Thanks!

Madeline

Parents
  • Hi Madeline,

    The best way to achieve this with a date format that you can control would be to talk to consulting about 2 custom date fields that return the first and last performance date within each production season. Alternatively, you could create a VALUE that looks like a date...

    Here I've got these numeric parts of the Performance Date yielding a value in the format YYYYMM.DD. Then taking the MIN and MAX of that resulting value returns the first and last performance date within each production season:

    MIN ( [Calendar Year] * 100 + [Calendar Month] + ([Calendar Day Of Month] * 0.01) )

    Best,
    Chris

    Chris Wallingford
    Product Owner
    Tessitura Network
    office: +1 888.643.5778 x553
    chris.wallingford@tessituranetwork.com

Reply
  • Hi Madeline,

    The best way to achieve this with a date format that you can control would be to talk to consulting about 2 custom date fields that return the first and last performance date within each production season. Alternatively, you could create a VALUE that looks like a date...

    Here I've got these numeric parts of the Performance Date yielding a value in the format YYYYMM.DD. Then taking the MIN and MAX of that resulting value returns the first and last performance date within each production season:

    MIN ( [Calendar Year] * 100 + [Calendar Month] + ([Calendar Day Of Month] * 0.01) )

    Best,
    Chris

    Chris Wallingford
    Product Owner
    Tessitura Network
    office: +1 888.643.5778 x553
    chris.wallingford@tessituranetwork.com

Children