IIf requires three arguments:
IIf(condition,if_true,if_false)
So in your calculation above, just put a third parameter of null in all your IIF functions. For example:
IIf ([Spot Length] = 05,[Measures].[Net Cost]/[Measures].[Purchased Spot Count]*.1, null)
Sorry for the delay in replying.