I have an equation on a subform to add up the number of vacation days scheduled. The equation is
=Sum([Duration by Day])
It works if the person has a vacation day scheduled, but if they don't I'm getting #Error.
I tried to fix it by writing =iif(isnull(Sum([Duration by Day]))=true, 0...