I have 3 fields, numeric, they're all working days. Some of the fields are blank. I'm currently using this formula, it's look fine to me on paper but when I run it, it only works when all 3 fields have value. I get no average if field 2 or 3 is blank. See screenshot.
Field 1= Availability. Field 2= 2nd Sourcing Time. Field 3= 3rd Sourcing Time
Average: IIf([Availability]="",Null,IIf([2nd Sourcing Time]="",Null,IIf([3rd Sourcing Time]="",Null,([Availability]+[2nd Sourcing Time]+[3rd Sourcing Time])/(IIf(IsNull([Availability]),0,1)+IIf(IsNull([2nd Sourcing Time]),0,1)+IIf(IsNull([3rd Sourcing Time]),0,1)))))
![]()