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
Jenolski
New Member

Replacing certain items within a column

Hello,

 

I'm currently doing some data cleaning but I stumbled into a problem. I have a column filled with names such as John, Willem, etc. But within that same column, I also have data in the form of E40 or N804. The items starting with E or N followed by a number should be replaced by null so I can fill down the names. 

 

Is there an easy way to accomplish this?

Thank you in advance! 

1 ACCEPTED SOLUTION

Hi @Jenolski ,

 

Try this code:

let _value = [Column1] in
if
(
Text.Start([Column1], 1) = "E" or
Text.Start([Column1], 1) = "N"
) and List.Count(List.Select({"0".."9"},
each (_) = Text.Range(_value, 1,1))) > 0 then null
else [Column1]

 

Capture.PNG



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

Proud to be a Super User!



View solution in original post

4 REPLIES 4
Jenolski
New Member

Additionally, E and N can be followed by different numbers. So not only the examples that I earlier gave. 

Hi @Jenolski ,

 

Try this code:

let _value = [Column1] in
if
(
Text.Start([Column1], 1) = "E" or
Text.Start([Column1], 1) = "N"
) and List.Count(List.Select({"0".."9"},
each (_) = Text.Range(_value, 1,1))) > 0 then null
else [Column1]

 

Capture.PNG



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

Proud to be a Super User!



Works like a charm, thank you! 

Well, we will need to find something that uniquely identifies those rows. Perhaps the presence of a comma (,)?


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

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.