I do not have much experience in SSRS and I've realized that the best way to replace NULL values from a result set (returned to SSRS) is to use this:
=IIF(IsNothing(Fields!MyField.Value),"NA",Fields!MyFields.Value)
But how to apply this exactly? I'm not sure what to do with this line. Thank you in advance for any help!