I have an Access 2003 report which contains the following query in the report record source. This query and report are working just fine. Now I would like to know if it is possible to highlight only the specific search text among all the other text returned with the query.
I am thinking I need to place some VBA code in the report detail section, on format event to highlight the search result word/words ?
SELECT * FROM tbl_data WHERE [tbl_data].[Data_Description] Like "*" & [forms]![frm_search]![SearchString] & "*";
Thank you for you assistance
I am thinking I need to place some VBA code in the report detail section, on format event to highlight the search result word/words ?
SELECT * FROM tbl_data WHERE [tbl_data].[Data_Description] Like "*" & [forms]![frm_search]![SearchString] & "*";
Thank you for you assistance