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
Anonymous
Not applicable

use of "LEFT() or RIGHT()" type functions in Query Editor / Custom Column

I'm trying to add a column in the query editor by using an if-then statement based on the left x characters of one of the other columns in my table. When I use a nested if statement in the table itself and add the custom field, this seems to work using yet this does not seem to work when adding a custom column in the query editor environment. Here's what I've tried:

 

if left(column,5)="abcde" then "a" else "b"

 

I realise I could work with adding the column outside the query editor, but I'd like to understand how to use the function inside it as well. 

 

thanks

1 ACCEPTED SOLUTION
PattemManohar
Community Champion
Community Champion

@Anonymous  Functions in DAX and M-Language (Power Query) are different.

 

You need to use as below in Power Query Editor as custom column

 

if Text.Start(column,5) = "abcde" then "a" else "b" 

 

if Text.End(column,2) = "de" then "d" else "e" 




Did I answer your question? Mark my post as a solution!

Proud to be a PBI Community Champion




View solution in original post

1 REPLY 1
PattemManohar
Community Champion
Community Champion

@Anonymous  Functions in DAX and M-Language (Power Query) are different.

 

You need to use as below in Power Query Editor as custom column

 

if Text.Start(column,5) = "abcde" then "a" else "b" 

 

if Text.End(column,2) = "de" then "d" else "e" 




Did I answer your question? Mark my post as a solution!

Proud to be a PBI Community Champion




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.