The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

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

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

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"
)
)

DEPLOYMENT TYPE
CLOUD
TAGS
AUG Leaders

Atlassian Community Events