• My problem was to display zero if the value of the denominator is zero, else the division of the two fields.

    So what I used is mentioned below,

    iff(Field2=0,0,Field1/Field2)

    I worked.. Hope it does the same for you all... 🙂