Let me preface by saying that I am NO expert power apps designer, I have built 4 or 5 relatively simple apps for my company so far and am learning completely as I go.
We have an old (I mean VERY old, like Windows 95 era) application that is still floating around and is being used for tracking our IT assets, who they are assigned to, etc. The back end database is a Microsoft SQL server that lives on-premise, connecting to Power Apps using an On-Premise Data Gateway. The goal of my power app is to be able to pull data from a specific table within that database, tblISDeptAssets.
With it I created a gallery that searches that table based on asset tag number or employee assigned. So far, so good. Once an item is selected, you can view all the pertinent column values that I care about in that table, through the use of an auto-generated Power Apps form for the selected Gallery item. I can make changes and patch them in, all works well, except for one specific field: the description (basically the free form notes written down for that asset).
It is saved in the database as a hexadecimal encoded blob, where the plaintext typed into the old application tracking software is encoded into hexadecimal in the following pattern: 0x<4 characters of Hex encoded binary that represents the length of the following string><Plain text encoded into Hex>. So for example, an empty notes field is 0x0000, whereas a populated notes field would be something like 0x100044656C6C20313922204D6F6E69746F72. I have figured out how to decode and re-encode this properly, but my issue is that Power Apps does not actually report this value like it does all the other columns. Instead it reports a reference link, ex:
appres://datasources/tblISDeptAssets/table/%5Bdbo%5D.%5BtblISDeptAssets%5D/rows/870/inline/Description
Can anyone help me figure out how to get to the actual value, instead of the Database reference shown above?

