Hi,
I am trying to open a report, where the the criteria is that the "status" field in a table is either one of the following:
I am trying to open a report, where the the criteria is that the "status" field in a table is either one of the following:
- Awaiting Stock
- In-Progress
- On-Hold
- Returned to Factory
- RMA Requested
Any help would be greatly appreciated, thank you.DoCmd.OpenReport "RMA Report", acViewReport, , [Status] = "Awaiting Stock" Or "In-Progress" Or "On-Hold" Or "Returned to Factory" Or "RMA Requested"