I have a string (strFilter) that is used to store a filter for a report. It is created from a list box (containing project numbers) on a form and when the user prints the report it ask them to save it and it stores strFilter in a table. What I need to do is when the user selects an existing report I would like for the list box to have the Items selected that are in strFilter:
strFilter = [ProjID] In ('1','5','4','7')
So when they select an existing report i would like the list box to have those Items selected. Thanks for the help.
strFilter = [ProjID] In ('1','5','4','7')
So when they select an existing report i would like the list box to have those Items selected. Thanks for the help.