Forum Discussion
Anonymous
6 years agoNot applicable
Filter out rows with sapces inbetween
I have a table with a column with these values. (these values are just example values. The real values are random) ABCD JZIEKFFHE HELLO WORLD JDJKA MISTER FUNNY HELLO PBI The record...
- 6 years ago
Anonymous
You could try this
= Table.SelectRows(#"Changed Type", each not Text.Contains([Column]," "))if the blank rows are also filtered out that means that are not real BLANKS , maybe had spaces.
Regards
Victor
ibarrau
Super User
6 years agoHi. Let's check what power query can do. If you click on the down arrow next to the column you can find the filter with different options. Try using the "doesn't contains". Then complete it with "HELLO". It should look like this:
= Table.SelectRows(#"Last Step", each not Text.Contains([Column1], "HELLO"))
That will avoid all values with HELLO on it. If you need to be more specific try the complete phrase in doesn't contains for both cases "HELLO WORLD" and "HELLO PBI".
Hope this help,
Regards,
Anonymous
6 years agoNot applicable
Hi Thank you for your reply. The example values I gave are not the real values. The words are more random and do not always start with HELLO. I've modified my example.