Forum Discussion
Anonymous
7 years agoNot applicable
Extract text from the a String / Remove No.'s from the Text
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. ...
- 7 years ago
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","-"}))
petrovnikitamai
7 years agoResolver V
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","-"}))
- Anonymous7 years agoNot applicable
Hi petrovnikitamai , Thanks. It worked. I was trying with {"a".."z"},{"A".."Z"} and was getting error. Got it though. Thanks again.