I'm trying to replace text in a field in an SSRS report with a lot of data. Are there any performance concerns between the following?
=iif(Fields!Field1.Value="Word 1", "Word 2", Fields!Field1.Value)
...and...
=Replace(Fields!thisItem.Value, "Word 1","Word 2")