dmyoungsal
Registered User.
- Local time
- Yesterday, 16:33
- Joined
- May 1, 2016
- Messages
- 112
The following formula is giving me a "#Type!" message in a text box.
=Nz([Cat1T],0)+Nz([Cat2T],0)+Nz([Cat3T],0)+Nz([Cat4T],0)
I have two other textboxes doing a similar formula and they work fine. I cannot figure out the cause. The two working formulas are below:
=Nz([T1Load],0)+Nz([T2Load],0)+Nz([t3load],0)+Nz([t4load],0)
=Nz([T1],0)+Nz([T2],0)+Nz([t3],0)+Nz([t4],0)
in the cells feeding to the first formula, the formula is: =IIf([Cat1Ea]="","",([Cat1Ea]*[txtcount1]))
If I change the IIF statement to be =IIf([Cat1Ea]="",0,([Cat1Ea]*[txtcount1]))
the error disappears.
=Nz([Cat1T],0)+Nz([Cat2T],0)+Nz([Cat3T],0)+Nz([Cat4T],0)
I have two other textboxes doing a similar formula and they work fine. I cannot figure out the cause. The two working formulas are below:
=Nz([T1Load],0)+Nz([T2Load],0)+Nz([t3load],0)+Nz([t4load],0)
=Nz([T1],0)+Nz([T2],0)+Nz([t3],0)+Nz([t4],0)
in the cells feeding to the first formula, the formula is: =IIf([Cat1Ea]="","",([Cat1Ea]*[txtcount1]))
If I change the IIF statement to be =IIf([Cat1Ea]="",0,([Cat1Ea]*[txtcount1]))
the error disappears.