If we are getting the data from a Database, we can use ISNull or COALESCE function to replace Null values with values we would like.
But if we want to replace the Null/Blank values in SSRS Report, we need to use IIF and Isnothing functions in expressions.
Here are the expressions to replace Null/Blank to 0, otherwise print the value itself.
=IIF(Isnothing(Fields!SoldPrice.Value),0,Fields!SoldPrice.Value)
If we would like to replace Null/Blank with "Missing Value" for string type column
=IIF(Isnothing(Fields!Region.Value),"Missing Value",Fields!Region.Value)
But if we want to replace the Null/Blank values in SSRS Report, we need to use IIF and Isnothing functions in expressions.
Here are the expressions to replace Null/Blank to 0, otherwise print the value itself.
=IIF(Isnothing(Fields!SoldPrice.Value),0,Fields!SoldPrice.Value)
If we would like to replace Null/Blank with "Missing Value" for string type column
=IIF(Isnothing(Fields!Region.Value),"Missing Value",Fields!Region.Value)
hi,please videos on the power bi also
ReplyDelete