EpiCombo Drop Down list multiple SearchFilter values

Hi all… I´ve found nothing about this, hopefully someone would be able to provide some guidance.

Anyone know how to set more than one filter in an EpiCombo drop down? In the SearchFilter properties, we can set it to something like CodeTypeID = ‘something’ for the User Codes.

I’ve tried the following, but it doesn’t work:

CodeTypeID = 'abc' || CodeTypeID = 'def'

I just figure it out that the proper way is to use OR, instead of||.

so the proper code should be:

CodeTypeID = 'abc' OR CodeTypeID = 'def'

1 Like