1

I am working on a report which has many Expressions defined and would like to check all of these Expressions for the occurrence of some particular string - is this possible?

For example, I'd like to be able to identify all Expressions which contain the text Round( so that I can determine whether there's some unnecessary rounding being done.

3N1GM4
  • 3,372
  • 3
  • 19
  • 40
  • 1
    If you don't want to it fully automated, you can simply download your report file (.rdl) from the server and open it in a simple editor (the file is in an xml-based layout) and search for "Round(". If this is what you search for, please tell me, then i'll convert this into an answer. If not, please be more precise how exactly you want the check to happen. – Chris Schmitz Nov 17 '16 at 12:27
  • Perfect, thanks for that. If you want to submit as an answer, I'll gladly mark it as accepted. – 3N1GM4 Nov 17 '16 at 12:29

1 Answers1

1

If you don't want to do it fully automated, you can simply download your report file (.rdl) from the server and open it in a simple editor (the file is in an xml-based layout) and search for "Round(".

Chris Schmitz
  • 390
  • 4
  • 15