Zero instead of null

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have created a cross tab query with a count. How do I get the cross tab
query to display 0 instead of a blank and/or null?
 
You should post your sql to get an accurate reply. However, try wrap your
Value in:
Val(Nz(Count([FieldName]),0))
 
Back
Top