gm
I have the following statement which is converting a problem code {number) to a modified code consisting of a character and a number. I would like the original problem code {INCIDENT.PROBLEM_CODE} number to display if the code is not within specified else if statement. I am getting the name INCIDENT.PROBLEM_CODE with my current statement.
ty
If {INCIDENT.PROBLEM_CODE} = 1 then "M1"
else if {INCIDENT.PROBLEM_CODE} = 159 then "B59"
else if {INCIDENT.PROBLEM_CODE} = 160 then "B60"
else if {INCIDENT.PROBLEM_CODE} = 46 then "B22"
else if {INCIDENT.PROBLEM_CODE} = 49 then "B40"
else "{INCIDENT.PROBLEM_CODE}"
I have the following statement which is converting a problem code {number) to a modified code consisting of a character and a number. I would like the original problem code {INCIDENT.PROBLEM_CODE} number to display if the code is not within specified else if statement. I am getting the name INCIDENT.PROBLEM_CODE with my current statement.
ty
If {INCIDENT.PROBLEM_CODE} = 1 then "M1"
else if {INCIDENT.PROBLEM_CODE} = 159 then "B59"
else if {INCIDENT.PROBLEM_CODE} = 160 then "B60"
else if {INCIDENT.PROBLEM_CODE} = 46 then "B22"
else if {INCIDENT.PROBLEM_CODE} = 49 then "B40"
else "{INCIDENT.PROBLEM_CODE}"