Oh, gotcha. In that case, you’d want something like:
classification is not Faculty/Staff
OR vaccine status is not vaccinated
This does seem a little confusing to start with, but it’s right. Walking through it…
classification=Student or relative => wi...
If you set your classification to “Faculty/Staff”, then the conditions are:
Faculty/Staff is not Faculty/Staff => false
[empty] is not Not Vaccinated => true
false and true => false, so field is not shown.
To fix, add these two additional conditions:...