Reputation: 241
I have an Expression in a Textbox as below...
=First(Replace(Fields!Analyst.Value, "eu\", ""), "DataSet")
I want the "eu\" text removed from the value.
The above does not give any error but does not remove the text.
What do I need to do for this to work? I just right-clicked on the Textbox and clicked Expression and added in that line of code.
Upvotes: 1
Views: 11103
Reputation: 999
Try this expression:
=Replace(Fields!Analyst.Value, "eu\", "")
Upvotes: 2