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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi folks
I was not able to find a similar issue recently, so I am wondering if this is new or not.
The context is as follows:
An image is worth thousands words:
in the Preview:
exactly what we expect
in the Table view after forcing the data refresh:
The source of the data is of type NVARCHAR, that PBI interprets as Text. So far so good...
Anyone would have any idea ?
Thanks
PY
Solved! Go to Solution.
Hi @pyguillou ,
I have combined 2 columns and then i am able to reproduce the case sensitivity. Combined Text column and a unique number column which is like identitty column. Please find below screenshot for reference, also attached pbix file for reference.
Below is the M Query :
let
Source = Excel.Workbook(File.Contents(source), null, true),
Sheet1_Sheet = Source{[Item="Sheet1",Kind="Sheet"]}[Data],
#"Changed Type" = Table.TransformColumnTypes(Sheet1_Sheet,{{"Column1", type text}}),
AddCombined = Table.AddColumn(#"Changed Type", "Combined", each [Column1] & Text.From([Column2]))
in
AddCombined
If this post helps, then please consider Accepting as solution to help the other members find it more quickly, don't forget to give a "Kudos" – I’d truly appreciate it!
Thank you!
Hi @pyguillou ,
I hope this information provided is helpful. Feel free to reach out if you have any further questions or would like to discuss this in more detail. If responses provided answers your question, please accept it as a solution so other community members with similar problems can find a solution faster.
Thank you!!
hI @pyguillou ,
I wanted to check if you had the opportunity to review the information provided. Please feel free to contact us if you have any further questions. If the responses has addressed your query, please accept it as a solution and give a 'Kudos' so other members can easily find it.
Thank you!!
Hello,
This topic fell under the pile
Will update you as soon as I can (may be beginning of next week)
Sorry for the delay
Hi @pyguillou ,
May I ask if you have resolved this issue? If so, please mark the helpful reply and accept it as the solution. This will be helpful for other community members who have similar problems to solve it faster.
Thank you!!
@v-sathmakuri , thanks for the update.
So, there is no way to make the PowerBI models case sensitive ? We have to recerate a column where we decode in UNICODE, and then how to get the lower case character ?
Thanks
Hi @pyguillou ,
I have combined 2 columns and then i am able to reproduce the case sensitivity. Combined Text column and a unique number column which is like identitty column. Please find below screenshot for reference, also attached pbix file for reference.
Below is the M Query :
let
Source = Excel.Workbook(File.Contents(source), null, true),
Sheet1_Sheet = Source{[Item="Sheet1",Kind="Sheet"]}[Data],
#"Changed Type" = Table.TransformColumnTypes(Sheet1_Sheet,{{"Column1", type text}}),
AddCombined = Table.AddColumn(#"Changed Type", "Combined", each [Column1] & Text.From([Column2]))
in
AddCombined
If this post helps, then please consider Accepting as solution to help the other members find it more quickly, don't forget to give a "Kudos" – I’d truly appreciate it!
Thank you!
Hi @pyguillou ,
Thank you for reaching out to Microsoft Fabric Community.
This behavior is due to Power BI's data model being case-insensitive for text fields. While the Power Query preview respects case differences, the model merges values like AIP and AiP as the same.
If this post helps, then please consider Accepting as solution to help the other members find it more quickly, don't forget to give a "Kudos" – I’d truly appreciate it!
Thanks & Regards,
Rekha,
CustomerSupportTeam.