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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Tirtha
New Member

Data Display issue in PowerBI Report

Dear folks,

I just have an issue where a particular value in data source has been chnaged in display in a text table report. I have column cell value abc.startTime. The same value is displayed in the query editor. However when I load it to the model, it displays as abc.starttime. "T" is lowercased. I have tested with uploading fresh data with same value it works correctly.

Your advice would be very helpful.

1 ACCEPTED SOLUTION
v-pgoloju
Community Support
Community Support

Hi @Tirtha 

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.

View solution in original post

4 REPLIES 4
v-pgoloju
Community Support
Community Support

Hi @Tirtha 

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.

danextian
Super User
Super User

Hi @Tirtha 

 

Other than applying a lowercase transformation to a column, the possible reason is that your data has rows for both abc.startTime and abc.starttime. Power BI is case-insensitive when loading data into its model. This means that "ABC" and "abc" are treated as the same value in a column. The reason for this behavior is that Power BI is built on VertiPaq, which follows a case-insensitive collation for text data. This in-memory storage engine compresses and optimizes data. Since it treats "ABC" and "abc" as the same value, only one of them is stored  - the first occurence.





Dane Belarmino | Microsoft MVP | Proud to be a Super User!

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


"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Need Power BI consultation, get in touch with me on LinkedIn or hire me on UpWork.
Learn with me on YouTube @DAXJutsu or follow my page on Facebook @DAXJutsuPBI.

Hello @danextian  thank you very much for your response. Its really insightful and this is what I have thought but you have given a lot more context. Yes, that is correct I have two three rows with abc.startTime, one with upper T in Time and one with Lower "t" in time. But these values are critical to be retained as they are in the source. Is there any way to display the values as they are?

Thanks again.

You can add a column that converts the text to binary and then to a readable Base64 encoded string if you want to differentiate a row with the same value from another. However, VertiPaq will still kick in for the original text.

[Original Text] & "_" & Binary.ToText(Text.ToBinary([Original Text]), BinaryEncoding.Base64)

danextian_0-1743507353514.png

Also, do not attempt to use DAX to extract the text before _ in the screenshot below as VertiPaq, again, will still kick in.

danextian_1-1743507649449.png

 





Dane Belarmino | Microsoft MVP | Proud to be a Super User!

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


"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Need Power BI consultation, get in touch with me on LinkedIn or hire me on UpWork.
Learn with me on YouTube @DAXJutsu or follow my page on Facebook @DAXJutsuPBI.

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

Top Kudoed Authors