Avatar

Correct answer by
Level 7

To get rid of the zero you just put an if statement in something like (in formcalc):

if ($ == 0) then

$ = ""

endif

You do a similar thing for the calculation with the error:

if (Field1 <> 0 and Field1.isNull == 0) then

$ = Field2 / Field1

endif

View solution in original post