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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
apeeltyler
Frequent Visitor

I'm using Text.Contains and need to remove a single text value and add another value in its place.

Below is the formula I'm using

 

if Text.Contains([Employee ID], "T") then "0" else [Employee ID]

 

What I'm after is if the Employee ID contains a 'T', for example: T0123, I want to remove the 'T' and add a '0' (zero) in place of the 'T'.

 

How do I accomplish this?

1 ACCEPTED SOLUTION
Syk
Super User
Super User

If your ID's are a specific length, you can use text.end 
try

if Text.Contains([Employee ID], "T") then "0" & text.right(Employee ID,4) else [Employee ID]

View solution in original post

6 REPLIES 6
Syk
Super User
Super User

If your ID's are a specific length, you can use text.end 
try

if Text.Contains([Employee ID], "T") then "0" & text.right(Employee ID,4) else [Employee ID]

Thanks!  However, I'm getting this error:

Expression.Error: The name 'Text.Right' wasn't recognized. Make sure it's spelled correctly.

 

edit to add:

If it helps, I'm in Power Query Editor creating a new column 

= Table.AddColumn(#"Removed Columns2", "EE ID", each if Text.Contains([Employee ID], "T") then "0" & Text.Right([Employee ID],4) else [Employee ID])

 

My bad! It's text.end 🙂

It's funny because that "worked", no Syntax Errors were detected, but all results came back as Error.  Employee ID is a Whole Number column

Hmm.. It shouldn't automatically set it to whole number if some of them start with 'T'... Try to add a change type right before you add this column. Set it to a text type instead.

Your formula worked!  What's odd is that the folks that have 'T' in the ID pulled in as Error.  There were only 3, so I'm just removing them, as they were going to be filtered out.  

I'm definately keeping your formula around for future use. Thanks!!🍻

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors