I am not sure I am doing this correctly but I have a combo box called cboactives with specific names to choose from. What I want the form to do is filter on a column where I have combined 3 columns of actives together. So the form will filter if one of those values is any of those three columns. So I have a macro setup right now trying to filter for anything "Like" what has been selected in the combo box. I am thinking there might be a better way through vba. Here is what I have in the where condition of the filter macro:
Any help is appreciated.
This is in Access 2013
-Brad
Code:
((([Active1] & " " & [Active2] & " " & [Active3]) Like "*" & "[me.cboactives]" & "*"))="'" & [Screen].[ActiveControl] & "'"
This is in Access 2013
-Brad
Last edited: