I have a situation where I need to use a multi-select parameter with the IN and LIKE operators together, something like this;
{TABLE.FIELD} in (like ("*" + {?ARRAY_PARAMETER} + "*"))
I know I can do this
{TABLE.FIELD} like ("*" + {?SINGLE_VALUE_PARAMETER} + "*")
or this
{TABLE.FIELD} in {?ARRAY_PARAMETER}
but can't figure out how to make them work together.
Any suggestions?
{TABLE.FIELD} in (like ("*" + {?ARRAY_PARAMETER} + "*"))
I know I can do this
{TABLE.FIELD} like ("*" + {?SINGLE_VALUE_PARAMETER} + "*")
or this
{TABLE.FIELD} in {?ARRAY_PARAMETER}
but can't figure out how to make them work together.
Any suggestions?