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! Does anybody know why 'Does Not Contain' filter in Power Query removes also null values, not only the value specified?
E.G.: I want to exclude the emails that contain "yahoo", but I want to keep the null values.
= Table.SelectRows(#"Filtered Rows", each not Text.Contains([Email], "yahoo"))
Solved! Go to Solution.
watch my video and you will know how to solve the problem
https://1drv.ms/v/s!AiUZ0Ws7G26RhlWZ9AMUAAFdgqmG?e=venO0d
Hi, you can wirte like this:
Table.SelectRows(#"Измененный тип", each not Text.Contains([data] , "yahoo") or [data]=null)
@Ahmedx thank you for this video! It's working now. Do you know why Power Query does this with null values? I can't find a logic explanation in any documentation provided.
Hi, you can wirte like this:
Table.SelectRows(#"Измененный тип", each not Text.Contains([data] , "yahoo") or [data]=null)
watch my video and you will know how to solve the problem
https://1drv.ms/v/s!AiUZ0Ws7G26RhlWZ9AMUAAFdgqmG?e=venO0d
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 97 | |
| 73 | |
| 50 | |
| 47 | |
| 44 |