I am trying to sum a column when project status is either "Completed" or "Deffered".
With the following it works fine:
=Sum(IIf([Project Status]=("Completed"),[Funds Commited],0))
However when I do this, I get an error:
=Sum(IIf([Project Status]=("Completed", "Deffered"),[Funds Commited],0))...