Forum Discussion
QuickBaseCoachD
7 years agoQrew Captain
Te other option is to wrap a field that might be null with
Nz([my field])
The Nz() function will turn a null into a zero, else just the value it is, if not null.
But I really try to avoid that as it clutters up the code.
Nz([my field])
The Nz() function will turn a null into a zero, else just the value it is, if not null.
But I really try to avoid that as it clutters up the code.