
I would like to calculate a fixed total on the following
If [Term] = Fall 2021 and
If [Affiliation] = "y" THEN
Count [ID]
3 answers
you were so close
this should work also
If attr([Term] )= "Fall 2021" and attr( [Affiliation]) = "y" THEN
Count [ID] End
Jim