Apr 24, 2007 #1 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
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
Apr 24, 2007 #2 FooCorwin Programmer Apr 19, 2007 4 US You could try something like this: =iif(Sum(Fields!ID.Value)=0, 0, Sum(Fields!ID.Value)) Upvote 0 Downvote
Apr 24, 2007 Thread starter #3 igor22 Programmer Sep 18, 2003 50 US actually, the following code did the trick: =iif(Sum(Fields!ID.Value)=nothing, 0, Sum(Fields!ID.Value)) Upvote 0 Downvote
actually, the following code did the trick: =iif(Sum(Fields!ID.Value)=nothing, 0, Sum(Fields!ID.Value))