Rajshekhar Pau1
Kilo Guru

Hi,

UI Policy will always throw you the error: 'There are multiple UI policies on the same field and their run order is not predictable'. In such case, you can change the order of each UI policy to 100,200,300 but that may not work properly on situations.

So, only advice is that, write an onchange client script on number field, and write your script as:

if(newValue == '1'){
//do something
}
else if(newValue == '2'){
//do something
}
else if(newValue == '3'){
//do something
}

Hope this helps.

Mark helpful or correct based on impact