You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I have a reqmt wherein I need to check multiple fields if they are EMPTY upon new issue creation and if yes, then send an email to the reporter. How do I add multiple conditions in the same rule such that they use the OR condition for checking the fields ( email should be sent even if any one of the field amongst the multiple fields is EMPTY) . Currently the rule only seems to take AND conditions and only If all the specified fields are EMPTY , sends and email.
Hi @Kunal Kumar -- Welcome to the Atlassian Community!
First thing, using automation rules requires both learning and experimentation. I encourage doing both to see what can help to solve your needs, and when you get stuck to then post a question to the community.
To get you started on creating your rule, please review this documentation and examples:
For your specific question, you may try an advanced compare condition, and use the conditional logic to build an expression for this test, using the or() function: https://support.atlassian.com/cloud-automation/docs/jira-smart-values-conditional-logic/#or
Please note: The or() function only takes two parameters. If you need to test more things you need to chain them together, such as with:
{{#if(or(A,or(B,C)))}} At least one thing was true {{/}}
Kind regards,
Bill
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.