Could just do with the VBA form filtering a form (on load) that excludes one item in a field.
I want to filter WHERE [Field1] Is Not Like "Completed"
Therefore:
Could you point me in the right direction please
I will also need to have a button on the form that reverses this i.e. it shows all the completed (Im guessing that that would be to just remove the filter)
Thanks for your help
Code:
DoCmd.OpenForm "MyForm", acFormDS, "", , , acNormal
I want to filter WHERE [Field1] Is Not Like "Completed"
Therefore:
Code:
DoCmd.OpenForm "MyForm", acFormDS, "",WHERE [Field1] Is Not Like "Completed" , , acNormal
Could you point me in the right direction please
I will also need to have a button on the form that reverses this i.e. it shows all the completed (Im guessing that that would be to just remove the filter)
Thanks for your help