Announcements
Attention for Customers without Multi-Factor Authentication or Single Sign-On - OTP Verification rolls out April 2025. Read all about it here.
A.Acheson
in reply to: n_thomasWJZ8L

If you just want to run the rule on the file then when the file is open manually run this external rule. All I have done in this rule is to take the original parameter and use it within the parameter function. This then targets the document to the the current document open when the the rule is run. The update lines at the end update the parameters and the document. The first article linked earlier explains how the various update line works. 

If (Parameter("LG") = 17.9375) Then
    Parameter("FTR_POS") = Parameter("DISTANCE_4")
End If

If (Parameter("LG") > 35.9375) Then
    Parameter("FTR_POS") = Parameter("DISTANCE_9")
End If

If ((Parameter("LG")> 17.9375 And (Parameter("LG") < 35.9375 Or (Parameter("LG") = 35.9375) Then
Parameter("FTR_POS")= Parameter("DISTANCE_6") End If

RuleParametersOutput()
iLogicVb.UpdateWhenDone = True.

 

 

 

If this solved a problem, please click (accept) as solution.‌‌‌‌
Or if this helped you, please, click (like)‌‌
Regards
Alan