The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hi,
i have data wich looks like:
notice the difference with the capital F.
i load this dataset into powerquery as a csv.. and everything looks fine..
but when i load it into the datamodel.. somehow PowerBI is transforming the capital F into a lowercase f.
This is really annoying, because i dont want it to. These are two different things... And i want it to be different...
Do you know this problem?
is there a workaround?
thanks
elaj
Solved! Go to Solution.
Hi @elaj
Unfortunately, annoying as this can be, it is by design.
Rather than rewrite the contents of this excellent article on the subject - please read this
Letter case-sensitivity in DAX, Power BI and Analysis Services - SQLBI
But to sum up the issue you are having: DAX sees friend and Friend as the same thing because DAX is case insensitive.
The storage engine in PBI builds a dictionary of the distinct values in your data, and because it is case insensitive, Hello (friend) and Hello (Friend) are the same in its view.
Hello (friend) is stored in the dictionary and any other occurrence of that string is merely given an Index to that string.
Regards
Phil
Proud to be a Super User!
Hi @elaj
Unfortunately, annoying as this can be, it is by design.
Rather than rewrite the contents of this excellent article on the subject - please read this
Letter case-sensitivity in DAX, Power BI and Analysis Services - SQLBI
But to sum up the issue you are having: DAX sees friend and Friend as the same thing because DAX is case insensitive.
The storage engine in PBI builds a dictionary of the distinct values in your data, and because it is case insensitive, Hello (friend) and Hello (Friend) are the same in its view.
Hello (friend) is stored in the dictionary and any other occurrence of that string is merely given an Index to that string.
Regards
Phil
Proud to be a Super User!