Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

put default number in a data cell of a matrix

Status
Not open for further replies.

igor22

Programmer
Sep 18, 2003
50
US
Hi,
If there is no match in the matrix - it displays an empty cell. Is there a way to display some default number instead?

Thanks,
Igor
 
You could try something like this:

=iif(Sum(Fields!ID.Value)=0, 0, Sum(Fields!ID.Value))
 
actually, the following code did the trick:
=iif(Sum(Fields!ID.Value)=nothing, 0, Sum(Fields!ID.Value))
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top