** We have decided to exclude all athletic events except for Varsity Football and Varsity Basketball. **
I've simplified and changed your conditional expression somewhat, see if it will work now:
<% next unless ( $EVENT->{details}->{category} eq "Athletics" && $EVENT->{details}->{level} eq "Varsity" && ($EVENT->{details}->{sport} eq "Football" | | $EVENT->{details}->{sport} eq "Basketball") ); %>
NOTE: There should NOT be a space between the | | in the above code. This forum software adds it.
Also, make sure the references "category", "level", "sport", "Athletics", "Varsity", "Football" and "Basketball" are all spelled exactly the same (case too) as the values defined in the script.
Dan O.
[This message has been edited by DanO (edited October 18, 2004).]