Forum Discussion
Anonymous
4 years agoNot applicable
Calculation not working
Hi All, I'm trying to create a calulated column like below and its not working for me. Please advice what should be done in place of this. Regards, Himanshu
- Anonymous4 years ago
Finally came up with the below calculation which is somewhat as expected.
Assignee/Watcher =SWITCH(TRUE(),Ticket_View[Isactive] = 1, "Assignee" & " - " & Ticket_View[Username],Ticket_View[Isactive] = 0, "Watcher" & " - " & Ticket_View[Username],"NA")
Anonymous
4 years agoNot applicable
I've already created individual columns
But the issue if when filtering the data , we've a value "NA" so it can be confusing for a user.
Anonymous
4 years agoNot applicable
Finally came up with the below calculation which is somewhat as expected.
Assignee/Watcher =
SWITCH(TRUE(),
Ticket_View[Isactive] = 1, "Assignee" & " - " & Ticket_View[Username],
Ticket_View[Isactive] = 0, "Watcher" & " - " & Ticket_View[Username],
"NA")