Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
I am trying to convert text to Base64, but it doesn't seem to work with special characters. Here is the line of code:
Var = Binary.FromText("Key:Value", BinaryEncoding.Base64)
"KeyValue" - Converts just fine.
"Key:Value" - Gives the following error: Expression.Error: Invalid binary encoding.
Any help would be much apprciated.
Solved! Go to Solution.
The solution was to convert to Binary and then encode to Base64. It's still interesting that it doesn't handle special characters.
Var = "Key:Value",
VarBin = Text.ToBinary(Var),
VarBin64 = Binary.ToText(VarBin, BinaryEncoding.Base64),
The solution was to convert to Binary and then encode to Base64. It's still interesting that it doesn't handle special characters.
Var = "Key:Value",
VarBin = Text.ToBinary(Var),
VarBin64 = Binary.ToText(VarBin, BinaryEncoding.Base64),
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 16 | |
| 12 | |
| 10 | |
| 7 | |
| 6 |