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
am_i_really
Frequent Visitor

Looking for measure or custom column similar to if else statement

Hi All, 

 

I'm looking for a measure or custom column that is similar to an if else statement. My column [Type] has a bunch of values that start with AE, what I need is that for any entry that starts with AE the result should be "AE", everything else should be "other". 

 

Table name: Table

Column name: Type

Text starts with AE: AE

All other entries: Other

 

Thanks in advance!

 

 

1 ACCEPTED SOLUTION
AlexisOlson
Super User
Super User

You can write a custom column in the query editor like this:

if Text.Start([Type], 2) = "AE" then "AE" else "Other"

The DAX calculated column equivalent would be

IF ( LEFT ( [Type], 2 ) = "AE", "AE", "Other" )

View solution in original post

1 REPLY 1
AlexisOlson
Super User
Super User

You can write a custom column in the query editor like this:

if Text.Start([Type], 2) = "AE" then "AE" else "Other"

The DAX calculated column equivalent would be

IF ( LEFT ( [Type], 2 ) = "AE", "AE", "Other" )

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.

Top Solution Authors
Top Kudoed Authors