I would like to know if anyone else has figured out a good way to highlight "search words" in their reports. I am using Crystal Reports XI. I had to convert my notes section into a string. The following is how I find reports with the desired information:
IF INSTR (UPPERCASE({@NOTES}), UPPERCASE({?SEARCH1}))>0 THEN TRUE ELSE FALSE
This formula works well to pull back the desired reports, but sometimes it's still a long process finding the information that I am looking for. Now, I would like to take it a step futher and highlight the parameter "search word" in the queried results. Does anyone know how I may accomplish this task?
IF INSTR (UPPERCASE({@NOTES}), UPPERCASE({?SEARCH1}))>0 THEN TRUE ELSE FALSE
This formula works well to pull back the desired reports, but sometimes it's still a long process finding the information that I am looking for. Now, I would like to take it a step futher and highlight the parameter "search word" in the queried results. Does anyone know how I may accomplish this task?