This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
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)
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 29 | |
| 25 | |
| 24 | |
| 21 | |
| 14 |
| User | Count |
|---|---|
| 61 | |
| 48 | |
| 26 | |
| 21 | |
| 20 |