Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
When importing case sensitive 13-digit salesforce IDs (from XLS or CSV), the ID's are correctly imported when shown in the data conversion UI (PowerQuery). When showing in DataView or ReportView some IDs are modified (single digits changed from uppercase to lowercase or vice versa) This creates wrong and unusable ID's.
Example:
let
Quelle = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMjAwMw4zAAFH8/JcLyUdJf+CAkOlWB10qSyIlJFSbCwA", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [OppID = _t, OppName = _t]),
#"Geänderter Typ" = Table.TransformColumnTypes(Quelle,{{"OppID", type text}, {"OppName", type text}})
in
#"Geänderter Typ"
The OppID in Row2 Column1 is: 0063V00000A7wmj
That's what the PowerQuery-Editor shows correctly.
When opening the same Table in Data-View or Report-View the same ID is suddenly
changed in it's last digit from lowercase to uppercase.
Why is this happening ?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.