Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hello Everyone,
I am trying to get the Street without No. from the column Street with No.
Anyone could please help.
Dataset looks like below:
Street with No. Street Without No.
| Erlanger Strasee 10 | Erlanger Strasee |
| EylauerStr. 11 | EylauerStr. |
| BadencheStr. 111 | BadencheStr. |
| Noway Street 11-15 | Noway Street |
| ABC Strasse | ABC Strasse |
Solved! Go to Solution.
try in query editor add new column
= Table.AddColumn(#"Changed Type", "Street Without No.", each Text.Select([Street with No.],{"a".."z","A".."Z","."," "}))or
= Table.AddColumn(#"Changed Type", "Street Without No.", each Text.Remove([Street with No.],{"0".."9","-"}))
try in query editor add new column
= Table.AddColumn(#"Changed Type", "Street Without No.", each Text.Select([Street with No.],{"a".."z","A".."Z","."," "}))or
= Table.AddColumn(#"Changed Type", "Street Without No.", each Text.Remove([Street with No.],{"0".."9","-"}))
Hi @petrovnikitamai , Thanks. It worked. I was trying with {"a".."z"},{"A".."Z"} and was getting error. Got it though. Thanks again.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.