Hi there,
I am trying to add a conditional statement in my report so that I can get color coded risk score.
In my survey Risk Score is calculated on a risk probability and impact (various parameters).
e.g. flood probability - alright
flood impact - severe
Risk score - Extreme
I am struggling to get the query correct as I am having various parameters for which risk been calculated.
if(${flooding_risk== 'Almost_certain' }and ${flooding_impact== 'Severe'},)Extreme (25)
if(${flooding_risk}== 'Likely' and ${flooding_impact}== 'Severe',)Extreme (20)
result it is showing
I am expecting my result should print only "Extreme (25)" or "Extreme (20)" if its present in the record.
Any help would be appreciated.
Thanks,
Anu