Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM. Register now.
Good day all,
Any idea why this filter will not work? Screenshot is with filter applied. Am I misunderstanding how this filter should work? Is it case sensitive and can that be ignored?
= Table.SelectRows(#"Filtered Rows", each not Text.Contains([Description], "CAP"))
Thank you.
Solved! Go to Solution.
Fixed.
= Table.SelectRows(#"Filtered Rows", each not Text.Contains([Description], "upg",Comparer.OrdinalIgnoreCase) or not Text.Contains([Description], "cap",Comparer.OrdinalIgnoreCase))
Just had to spend 5 more minutes reading.
Fixed.
= Table.SelectRows(#"Filtered Rows", each not Text.Contains([Description], "upg",Comparer.OrdinalIgnoreCase) or not Text.Contains([Description], "cap",Comparer.OrdinalIgnoreCase))
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.