overwrite ilogic driven parameter with user parameter inventor vaule

overwrite ilogic driven parameter with user parameter inventor vaule

ArunS2DHBM
Enthusiast Enthusiast
506 Views
3 Replies
Message 1 of 4

overwrite ilogic driven parameter with user parameter inventor vaule

ArunS2DHBM
Enthusiast
Enthusiast

I have created a formula for X parameter which gives output as 35, I want to overwrite it to 38 (as per my preference), but when I again run the rule, 35 is assigned to X.

 

can anyone help me in overwrite the parameter permanent 

 

Thanks in advance.

0 Likes
Accepted solutions (2)
507 Views
3 Replies
Replies (3)
Message 2 of 4

Michael.Navara
Advisor
Advisor
Accepted solution

Who may be a winner? You or iLogic?

You can use combination of two parameters. First "userX" is set by user, the second "iLogicX" is set by iLogic and finally use iLogic for decision who wins. For example:

If userX <> 0 Then
   X = userX
Else
   X = iLogicX
End If

 

Message 3 of 4

ArunS2DHBM
Enthusiast
Enthusiast

it works perfectly!. Is it the only way or any other option also available?.

0 Likes
Message 4 of 4

Michael.Navara
Advisor
Advisor
Accepted solution

Every problem has many solutions. But this is easy, clear and readable for future maintenance.