I have a query and a subsequent report that searches my table. The Parameter is called [all] and I get a popup box to enter my search term.
Is there a way to have the Report bold, underline, change the color, etc of the found word? to take it a step further, is there a way to say if found alone, to bold and change to red, and if found within another word, to bold green and underline?
An example would be Tent. If I search for Tent: I would want it to Bold and Red when found tent, but bold, green and underline when it finds retention.
my codes for the query is
Code:
SELECT [Consolidated Denied Party Report].*, [Consolidated Denied Party Report].[26]
FROM [Consolidated Denied Party Report]
WHERE ((([Consolidated Denied Party Report].[26]) Like "*" & [All] & "*"));
The report was created via wizard based off the query....