Skip to main content
6-Contributor
December 14, 2022
Solved

Any conditional function in expression field ?

  • December 14, 2022
  • 1 reply
  • 1145 views

Am I able to get any conditional function to this expression field ?

 

 

Michael_Dezet_0-1671004890995.png

 

Best answer by VladimirRosu_116627

Yes. What kind of functions are you interested in using there?

This works:

if (inputParam =="aaa") result=2;
else result=4;

There are some limitations related to the objects and functions you can use in an expression. If it's useful, look here.

1 reply

19-Tanzanite
December 14, 2022

Yes. What kind of functions are you interested in using there?

This works:

if (inputParam =="aaa") result=2;
else result=4;

There are some limitations related to the objects and functions you can use in an expression. If it's useful, look here.

6-Contributor
December 14, 2022

"if" works excellent.
Thank You.