The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. 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.