Quantcast
Viewing all articles
Browse latest Browse all 9

IsNull Question

Levi,

 

You can create calculated fields in your dataset to handle this logic.  It would look something like this:

 

=IIF(Fields!CurrencyField.Value is null, '--', CStr(Fields!CurrencyField.Value))

 

Then you could use the new dataset fields fields rather than your original fields.  This should be the same amount of effort as adding ISNULL to your SQL, but will allow you to have a string field.

 

HTH,

Jessica


Viewing all articles
Browse latest Browse all 9

Trending Articles