I have the following format string applied to a Report Column:
For any value other than zero (actually zero, not a NULL value) this works, but a zero is displayed as blank.
If I change this line to this:
I get my 0's back, but then do not get commas on numbers of 1000 or greater.
What's going on?
Thanks in advance!
Code:
=Format(Fields!Units_Distributed_in_Date_Range.Value,"###,###,###")
For any value other than zero (actually zero, not a NULL value) this works, but a zero is displayed as blank.
If I change this line to this:
Code:
=Fields!Units_Distributed_in_Date_Range.Value
I get my 0's back, but then do not get commas on numbers of 1000 or greater.
What's going on?
Thanks in advance!