Nulls in Crosstab queries

D

Dave

I have a crosstab query running that has empty fields in the records
results.

Is there a simple way to have a 0 zero displayed instead of a blank filed.

I am counting the crosstab fields.

Thanks in advance
 
D

Duane Hookom

This is usually done by wrapping your value expression in something like:
TheValue: Val(Nz(Count([fielda]),0))
 
D

Dave

Thank you!!!

It works as advertised!!!!


Duane Hookom said:
This is usually done by wrapping your value expression in something like:
TheValue: Val(Nz(Count([fielda]),0))

--
Duane Hookom
MS Access MVP
--

Dave said:
I have a crosstab query running that has empty fields in the records
results.

Is there a simple way to have a 0 zero displayed instead of a blank
filed.

I am counting the crosstab fields.

Thanks in advance
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top