Hi
I want to use this formula on my JS
sender != @UserName | status != "OK"
I try with this but it will not work
var tmp01 = getComponent("sender").getValue();
var tmp02 = getComponent("status").getValue();
if( tmp01 !== @UserName() | tmp02 !== 'OK'){
return false;
}else{
return true;
}