Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Nidhi_Kochrekar
Frequent 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 ([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

1 ACCEPTED SOLUTION
v-rzhou-msft
Community Support
Community Support

Hi @Nidhi_Kochrekar 

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.

1.png

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.

 

View solution in original post

2 REPLIES 2
v-rzhou-msft
Community Support
Community Support

Hi @Nidhi_Kochrekar 

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.

1.png

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.

 

Tahreem24
Super User
Super User

@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)

 

Don't forget to give thumbs up and accept this as a solution if it helped you!!!

Please take a quick glance at newly created dashboards : Restaurant Management Dashboard , HR Analytics Report , Hotel Management Report, Sales Analysis Report , Fortune 500 Companies Analysis , Revenue Tracking Dashboard

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.