G
Guest
I have a table that I designed (not in the most effective manor). I have
several fields which will be null in each record. I set the default value to
zero so that my calculations would work in my queries. My user has told me
that the zeros are distracting and she wants me to get rid of them. I posted
a message and was told to use the Nz function everywhere my possibly null
vaule fields will show up. I was told to wrap the field name Balance like
this
Nz(Balance,0)
I tried the following statement in my QBE
TotalITA:
NZ[ITA(Tuition),0)]+Nz[ITA(Books),0]+Nz[ITA(ClassSupplies),0)]+Nz[ITA(OtherSupplies),0]
It did not work.
Where do I need to put this function in order to get it to work?
several fields which will be null in each record. I set the default value to
zero so that my calculations would work in my queries. My user has told me
that the zeros are distracting and she wants me to get rid of them. I posted
a message and was told to use the Nz function everywhere my possibly null
vaule fields will show up. I was told to wrap the field name Balance like
this
Nz(Balance,0)
I tried the following statement in my QBE
TotalITA:
NZ[ITA(Tuition),0)]+Nz[ITA(Books),0]+Nz[ITA(ClassSupplies),0)]+Nz[ITA(OtherSupplies),0]
It did not work.
Where do I need to put this function in order to get it to work?