Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
googlogmob
Advocate II
Advocate II

Power BI Desktop thinks "Aaa" and "aaA" is equals

Is there any way to set for Power BI Desktop to use Aaa and AAa as different values?

E.g. collation in SQL Server

1 ACCEPTED SOLUTION

We added custom column in Query to create distinct values for key field:

= Binary.ToText ( Text.ToBinary([campaignId]) ) & [campaignId]

View solution in original post

6 REPLIES 6
hugoberry
Responsive Resident
Responsive Resident

You can read more about this here https://dennyglee.com/2010/06/18/powerpivot-you-are-so-insensitive-case-that-is/

The article also contains some workarounds.

There is not any solution

It would help to know if you're having trouble with case sensitivity in a query or in a DAX formula. The solutions for each will be completely different.





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Just to aid the conversation whomever is interested to reproduce the problem, try applying the following query

=#table(null,{{"aaa"},{"AAA"},{"aAa"}})

and check your results in either data model or the report view.

 

As per initial question from @googlogmob there is no such thing as collation in Power Query/Pivot that would be obvious to apply.

 

If the columns with Aaa and aaA are not meant for reporting I would suggest transforming their contents in Power Query to binary Text.ToBinary(). 

 

We added custom column in Query to create distinct values for key field:

= Binary.ToText ( Text.ToBinary([campaignId]) ) & [campaignId]

Can you use the EXACT function?

 

eg, 

 

Measure 2 = EXACT("AAA","aaa")

returns FALSE

 

while 

 

Measure 2 = EXACT("AAA","AAA")

returns TRUE


To learn more about DAX visit : aka.ms/practicalDAX

Proud to be a Datanaut!

Helpful resources

Announcements
PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.