single filter check for multiple values

I have a requirement to check a property with two different values and each value is having different path.

For example: CustomerType is C, C1 decision table will be executed

CustomerType is B, B1 decision table will be executed

Instead of 2 different filters what can be used and achieve this in a single check.

Thanks in advance.

@Shushmasrik,

You can use If() function in your activity or data transform where you are checking the condition and calling the decision table based on it.

If(.CustomerType==ā€œCā€,pxEvaluateDecisionTable(String Clipboard page,String Decision table name),pxEvaluateDecisionTable(String Clipboard page,String Decision table name))

in general syntax:

If(logic,success value,failure value)