Hello,
I work for an event based organization. Each of our events belongs to three separate programs (represented "M", "X" and "S" in my formula). We track all of our yearly attendance data in one master sheet with separate columns for program type, event type and each attending group's attendance at the event. All column types involved are text/number.
I'm pulling some metrics on our new event attendees into another sheet and I'd like to identify the number of people who attended Program M for the first time in 2023 AND have also attended at least one of our other programs in the last three years.
The first part of the formula is straight forward. SUMIFS the 2023 attendance column for Program M if the 2023 event column is not blank AND the event column for each other year for Program M is blank:
=SUMIFS({M23#}, {M23E}, "<>", {M22E}, "", {M21E}, "", {M20E}, "", {M19E}, "", {M18E}, "", {M17E}, "", {M16E}, "", {M15E}, "")
It's the next part that I can't figure out. Identifying how many of these new attendees have also attended one of the following events (without duplicating attendees): {X22E}, {X21E}, {X20E}, {S22E}, {S20E}, {S19E}.
I've been attempting to use an OR function but I think I've realized that an OR function cannot be applied to multiple columns - only multiple criteria within a single column??
I hope that makes sense! Any suggestions?