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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.

Reply
jsabo
Helper I
Helper I

Help with DAX to Trim

Hello,

 

I am trying to trim 4 characters off the back of a field. For instance, the field might contain "HOUSTON, TX (42H)" and I would like to have a custom column which will contain only "HOUSTON, TX". Here is the DAX I am trying to use, but am getting an error regarding Type Text to Type Number:

 

Trimmed Work Loc = left('All Current Employees'[Work Location],LEN('All Current Employees'[Work Location]-5))

 

Any ideas? Thanks.

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Your parens just aren't lined up right.

Trimmed Work Loc = left('All Current Employees'[Work Location],LEN('All Current Employees'[Work Location])-5)

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

Your parens just aren't lined up right.

Trimmed Work Loc = left('All Current Employees'[Work Location],LEN('All Current Employees'[Work Location])-5)

Thanks, @Anonymous. Now I get an error stating, "An argument of function 'LEFT' has the wrong data type or has an invalid value".

 

There will be times that there are blanks, I don't know if that's the issue here?

Got it, just used this:

 

Trimmed Work Loc = if('All Current Employees'[Work Location] ="", "",left('All Current Employees'[Work Location],LEN('All Current Employees'[Work Location])-5))

 

thanks, @Anonymous!

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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