Forum Discussion
Nidhi_Kochrekar
4 years agoFrequent Visitor
IF Else ?
Hello, I am trying to add new column if Text.Contains([SVTTitle]="Response") and ([MeasurementStatus]=5) then "Response Missed" else if Text.Contains ([SVTTitle]="Resolution") and ([Measurem...
- Anonymous4 years ago
The error should be caused by wrong format in Text.Contains fuction. It should looks like Text.Contains("Hello World", "Hello").
Please try this code.
if Text.Contains([SVTTitle],"Response") and ([MeasurementStatus]=5) then "Response Missed" else if Text.Contains ([SVTTitle],"Resolution") and ([MeasurementStatus]=5) then "Resolution Missed" else "Total Tickets"Result is as below.
Best Regards,
Rico ZhouIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
4 years agoNot applicable
The error should be caused by wrong format in Text.Contains fuction. It should looks like Text.Contains("Hello World", "Hello").
Please try this code.
if Text.Contains([SVTTitle],"Response") and ([MeasurementStatus]=5) then "Response Missed"
else if Text.Contains ([SVTTitle],"Resolution") and ([MeasurementStatus]=5) then "Resolution Missed" else "Total Tickets"
Result is as below.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.