|
Question : Filter a Report to only show certain data contain within a field
|
|
I have a report based upon a query which is working great! However one of the fileds contain other some unecessary data for example: Dental, HRR/PHA, Influenza... I only need to display "Dental" Is it possible to have the report only show "Dental" in that particular field? If so, How?
My query is as follows:SELECT [Medical Data].Name, [Medical Data].Rank, [Medical Data].Unit, [Medical Data].PASCODE, [Medical Data].[IMR Dental Status], [Medical Data].[IMRDental Class], [Medical Data].[IMR Last Dental], [Medical Data].[IMRDental Age Months] FROM [Medical Data] WHERE ((([Medical Data].[IMRDental Age Months])>=12) AND (([Medical Data].[IMR Action Items]) Like "*DENTAL*"));
Hope to hear something soon,
Thanks in advance
|
|
Answer : Filter a Report to only show certain data contain within a field
|
|
does the other, irrelevant information also have the word DENTAl in it?
Try changing the report filter to
[IMR Action Items] ="Dental"
|
|
|
|