Null Value in Cross-Tab Query

Cleung

New member
Local time
Today, 17:37
Joined
Jun 21, 2002
Messages
6
Is there any way to change the null value in the Cross-Tab Query to show "0". Presently, the null value field is blank. The problem I have is when I set a control in a form to add up the fileds from the cross-tab queries, the formula doesn;t work if the fields are blank. It must have a 0 value in it. My formula is:

[Field a] + [Field b] + [Field c]

Thanks
 
try this, the nz function allows us to put a zero where a null value would normally be

nz([Field a],0) + nz([Field b],0) + nz([Field c] ,0)
 

Users who are viewing this thread

Back
Top Bottom