Join 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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hello
I joined two tables with Merged Query using Left Outer join.
It appears it only matches case-sensitive data and it omits all the non case-sensitive matches.
How can I fix this?
Thanks
You can try to do a fuzzy match when you are doing the Merged Query
Make sure to set
Similarity Threshold = 1.0 (so you get exact matches)
Ignore Case = Check
As always, make sure to test the matched results before pushing to prod.
Similarity Threshold Indicates how similar two values need to be in order to match. The minimum value of 0.00 causes all values to match each other. The maximum value of 1.00 only allows exact matches. The default value is 0.80.
Ignore case Indicates whether text values should be compared in a case sensitive or insensitive manner. The default behavior is case insensitive, which means case is ignored.
@Anonymous , Using text-upper, create a new column in both tables and join in Power Query
Thanks but I wouldn't like to change the case of the data, is it possible that I introduce a parameter in the Power Query code so that it is non case-sensitive?
@Anonymous
you can try to use solution with "keyEqualityComparers" parameter from here https://community.powerbi.com/t5/Desktop/PowerQuery-Merge-Queries/td-p/149565
But it's not recommended and it's always (from my experience) a bad practice to join by text (especially long case-senisitve text)
@Anonymous
you can execute lowercase or UPPERCASE operation before left join
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.