In my SSRS reports one of the fields is using this expression, where the field is a number field. I want to see blank field if the value is 0
.
=IIf(Fields!PERIOD02_VALUE.Value <> 0,Fields!PERIOD02_VALUE.Value ,"")
the Excel exported version is having this field considered as text not number.
Is there any other way to do this from SSRS side?