Condition Syntax

Greetings,
For the rule expression if the incident date is not blank do we use:
V{incident_date}!=null
or
V{incident_date}!=‘’
d2:hasValue(‘incident_date’)

Thanks

Hello,

If you want to test if there are a value you just have to use : d2:hasValue(V{incident_date})

If you want test if there are no value add ! Like : !d2:hasValue(V{incident_date})