Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 19:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.