AshikHusein
07-03-2003, 07:38 AM
For crosstab queries, when a sum valuates to zero, it returns a null value. Is there anyway that it can return a zero instead of null because I get these blank spaces in the report obtained from the crosstab which would look better with zeros and not confuse the management who reads these reports. Thanks.
Travis
07-03-2003, 01:53 PM
change the control source on the report to :
=Nz([Field Name],0)
Make sure that the Controls name is not the same name as the Control Source Name (Access by default does this)
AshikHusein
07-04-2003, 07:01 AM
That works beautifully!! Thanks.:)
Brahim
07-04-2003, 11:10 PM
Hi,
i have the same problem but unfotunately it's not working, even with nz([field],0)
when i go to inside the report's record source and run it those field contain zero but when i run the report itself the same record show blank (null)
please help me
AshikHusein
07-07-2003, 06:50 AM
Did you change the control name to be different then the control source name?