Announcements
Attention for Customers without Multi-Factor Authentication or Single Sign-On - OTP Verification rolls out April 2025. Read all about it here.
Anonymous
256 Views, 2 Replies

Simple iLogic Rule

Sorry, just learning to use iLogic...

 

I need a rule at the part level.

If (Parameter A) > 60in Then a Feature will be turned on, otherwise the feature will be turned off

 

Thanks.

Anonymous
in reply to: Anonymous

Nevermind... I found how to use conditional feature suppression.

CCarreiras
in reply to: Anonymous

Hi!!!

 

 

With iLogic:

 

SyntaxEditor Code Snippet

If (Parameter A) > 60 Then

Feature.IsActive("featurename")=True
Else 
Feature.IsActive("featurename")=False

End If
CCarreiras

EESignature