views:

99

answers:

2

It's common practise in Crystal Reports to use a formula on a report that carries out some background logic. But to prevent it displaying, you have to hide the field. Question is, how do you find it again several years later when you've forgotten where it was? I've got a reference to a formula called @AddressedCount but I can't find where it is in the report!

Cheers, Rob.

+1  A: 

In Crystal Reports XI, while in design view you can go to Edit/Find type the field name and click the "Mark All" button. This will highlight the field. Hope that helps.

Dusty
Unfortunately still on Crystal Reports 9 here and this doesn't have this functionality. It's a legacy product. We use Microsoft's ReportViewer in new products which is a dream to use compared to CR...
Rob Nicholson
+2  A: 

Have you tried File->Export->Export Report (then choose Report Definition from the drop down and hit Export button) This will produce a text file listing all* the elements in the report which you can load up in your favorite text editor and search for whatever you want.

*There are cases where something in a report is not included in the definition file, but it is rare.

Peter Recore
Thanks for this - the exported report definition allowed me to find which section it was in and then with lots of mouse hovering, find the reference. White on white eh :-)
Rob Nicholson
you can try changing the background color of the section to something non-white. sometimes that is easier than the hover method, assuming the formula is actually printing something in white.
Peter Recore