Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
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 ([MeasurementStatus]=5) then "Resolution Missed" else "Total Tickets"
where SVTTitle is Text and MeasurementStatus is whole number
There is no error in syntax but getting error in column
Solved! Go to Solution.
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.
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.
@Nidhi_Kochrekar , Create a Calculated column using below DAX:
New Column = IF( SEARCH ("Response",SVTTitle,1,0)>1 && MeasurementStatus=5, "Response Missed",
IF(SEARCH ("Resolution",SVTTitle,1,0)>1 && MeasurementStatus=5, "Resolution Missed", Total Tickets)
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.
| User | Count |
|---|---|
| 27 | |
| 23 | |
| 18 | |
| 18 | |
| 15 |
| User | Count |
|---|---|
| 54 | |
| 44 | |
| 42 | |
| 39 | |
| 33 |