This code:
Case Is >= 1
DoCmd.OpenForm stForm, , , [Manifest_ID] = " & Me![Manifest_ID]"
...should not compile. It should probably be:
Case Is >= 1
DoCmd.OpenForm stForm, , , "[Manifest_ID] = " & Me![Manifest_ID]
This code:
Case Is >= 1
DoCmd.OpenForm stForm, , , [Manifest_ID] = " & Me![Manifest_ID]"
...should not compile. It should probably be:
Case Is >= 1
DoCmd.OpenForm stForm, , , "[Manifest_ID] = " & Me![Manifest_ID]
Works like a charm now. Thank you for all your help.
Glad we could help.