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

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
RustyNails
Helper III
Helper III

Decrypting a SQL Server Column from Binary encryption during PBI Data Import

Hello. I have a SQL Server table with an encrypted Column that uses CEK_Auto1 Encryption key (deterministic). It converted the column into a Hex format (0x0126E595C47C89086...). In PowerBI I need to decrypt this column (my user should have been given the SQL privileges to do so). The Column's original datatype is nvarchar(100) but in reality it is just numbers being stored in nvarchar type.

 

In PBI the column shows up as "Binary". How do I Decrypt this column in PBI?

 

Thanks

1 ACCEPTED SOLUTION
dax
Community Support
Community Support

Hi RustyNails, 

According to yiur description, it seems that you want to convert binary to hex or text, right? If so, you could try below M code to see whether it work or not.

= Table.AddColumn(Source, "Custom", each Binary.ToText([a],BinaryEncoding.Base64))
or
= Table.AddColumn(#"Added Custom", "Custom.1", each Binary.ToText([a],BinaryEncoding.Hex))

 You could refer to Binary.ToText ,Converting Binary to hex value or numeric value  or this blog  for details.

Best Regards,
Zoe Zhi

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

View solution in original post

1 REPLY 1
dax
Community Support
Community Support

Hi RustyNails, 

According to yiur description, it seems that you want to convert binary to hex or text, right? If so, you could try below M code to see whether it work or not.

= Table.AddColumn(Source, "Custom", each Binary.ToText([a],BinaryEncoding.Base64))
or
= Table.AddColumn(#"Added Custom", "Custom.1", each Binary.ToText([a],BinaryEncoding.Hex))

 You could refer to Binary.ToText ,Converting Binary to hex value or numeric value  or this blog  for details.

Best Regards,
Zoe Zhi

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.