Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

Getting error for IF expression

Ravi Kanth Tadoori November 7, 2022
IF([entry.transactions]>10 && [entry.ListOfApps]>10, "Large", "Medium") 
||
IF([entry.transactions]<5 && [entry.ListOfApps]<5, "Small", "Medium")


Im trying to achieve above expression in confiform field definition but getting "NA" , when entry.transactions and ListOfApps value is less than 5 whereas I'm expecting  Small

1 answer

0 votes
Ravi Kanth Tadoori November 7, 2022

was able to use as below 

IF(
[entry.transactions] > 15 && [entry.listOfApps]> 15,
"Large",
IF([entry.transactions] < 5 && [entry.listOfApps]< 5,
"Medium",
"Small"
)
)

Suggest an answer

Log in or Sign up to answer
DEPLOYMENT TYPE
CLOUD
TAGS
AUG Leaders

Atlassian Community Events