The opposite of the nz() function: returns null if value is null, empty string, 0 or "0". Used for reports to suppress display of zeroes, making relevant information stand out
A variant value
zn(Null) => Null
zn(0) => Null
zn("") => Null
zn("0") => Null
zn(23) => 23
zn(1.566) => 1.566