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

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Structure : How to make the cell empty when if all not

Hi!

I am writing a formula languge in structure.

The formula is like following

IF(issuetype=task & Condition A, "A", 

    issuetype=task & Condition B, "B",

    issuetype=task & Condition C, "C",

    issuetype=task  & Condition D, "D",

    issuetype=subtask & Condition A, "A", 

    issuetype=subtask & Condition B, "B",

    issuetype=subtask & Condition C, "C",

    issuetype=subtask  & Condition D, "D", "")

 

For 'subtask', I can see the empty cell where if a condition is missing. 

But random expression shows up in the case of 'task'. I want to make it empty too if the condition is not matched.

What should I put more in this formula? Need an advice from experts.

Thank you in advance!

 

1 answer

1 vote
Ditte Simard
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
Nov 20, 2023

Hi @yirang Im !

I am not able to recreate your error, but maybe you should try breaking up your IF statement into two IF statements like this:

/*check if task issuetype*/
IF issuetype="task":
IF (condition A, "A",
condition B, "B",
condition C, "C",
condition D, "D", " ")

/*check if sub-task issuetype*/
IF issuetype="subtask":
IF (condition A, "A",
condition B, "B",
condition C, "C",
condition D, "D", " ")

This might help you find where the error is occurring.

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events