If you have someone with access to SSMS and a little SQL knowledge you can use what I created. It's a very basic local view and then I have some list criteria that are based on this table. So I can pull a list by first perf date, first perf prod season, first perf season, and/or first perf price type.
The view is this:
USE [impresario]GO
/****** Object: View [dbo].[LVS_TICKET_HISTORY_FIRST_PERF] Script Date: 3/28/2022 1:19:49 PM ******/SET ANSI_NULLS ONGO
SET QUOTED_IDENTIFIER ONGO
CREATE VIEW [dbo].[LVS_TICKET_HISTORY_FIRST_PERF]ASSELECT *FROM (SELECT ROW_NUMBER() OVER (partition BY customer_no ORDER BY perf_dt) row_num, *FROM VS_TICKET_HISTORY) aWHERE a.row_num = 1 and role != 2GO