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
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!
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.