Forum Discussion
Issue with Case Conversion in Power BI Table View
- 1 year ago
Hi Ravindra_
Power BI automatically normalizes text case when loading data, treating "English" and "enGLISH" as the same value and picks whatever gets loaded first. You convert the text to binary and then the binary format to text and append it to the original. Extracting the actual text in DAX will, however, return just the first version that gets stored.
Here's s sample custom column:
let toBinary = Text.ToBinary([TextColumn]), toText = Binary.ToText(toBinary) in [TextColumn] & "_" & toText
Hi Ravindra_
Power BI automatically normalizes text case when loading data, treating "English" and "enGLISH" as the same value and picks whatever gets loaded first. You convert the text to binary and then the binary format to text and append it to the original. Extracting the actual text in DAX will, however, return just the first version that gets stored.
Here's s sample custom column:
let
toBinary = Text.ToBinary([TextColumn]),
toText = Binary.ToText(toBinary)
in [TextColumn] & "_" & toText