Hi,
I am declaring couple string in a constant:
Public Const BIGCOMPANY As String "Apple, Samsung, HTC"
And I wonder if anyone know I can apply this filter to my code, so in the combobox, if they choose BIGCOMPANY, it will filter thru the listing all record that has those company in the field [COMPANY]
I used to do for another method using InStr, but I cant figure out for the filtering..
I am declaring couple string in a constant:
Public Const BIGCOMPANY As String "Apple, Samsung, HTC"
And I wonder if anyone know I can apply this filter to my code, so in the combobox, if they choose BIGCOMPANY, it will filter thru the listing all record that has those company in the field [COMPANY]
I used to do for another method using InStr, but I cant figure out for the filtering..
Code:
If InStr(BIGCOMPANY, rs![COMPANY]) > 0 Then blabla