Forum Discussion
MCFNeil
8 years agoQrew Captain
Try to use the IsNull function rather than the <>"".
If(IsNull([Contract Down Time]),
If the field properties for the duration field have "treat blank values as '0' in calculations" it will cause your <>"" to have the value of 0, so its not ever blank.
If(IsNull([Contract Down Time]),
If the field properties for the duration field have "treat blank values as '0' in calculations" it will cause your <>"" to have the value of 0, so its not ever blank.
MCFNeil
8 years agoQrew Captain
If([Contract Down Time]<=0, ....
Or do they put 0 and you want that to be true if they put 0?
Or do they put 0 and you want that to be true if they put 0?