I have a form where I want to filter or unfilter using buttons any fields that are true or false
so
me.filter = [ConfirmationSent2nd] = true
me.filteron = true
that sort of thing
not sure about the vba for that...
I have a form where I want to filter or unfilter using buttons any fields that are true or false
so
me.filter = [ConfirmationSent2nd] = true
me.filteron = true
that sort of thing
not sure about the vba for that...
Right idea, but the filter string needs to be enclosed in quotes.
Like so?Code:me.filter = "ConfirmationSent2nd = true" me.filteron = true
Update - it works. Thank you so much!![]()