Hi ,
I have an Canvas app with a Vertical gallery that is based on an SQL query. The query for the gallery is as follows:
Filter(SqlTable1, column1 = DropdownBox.Selected.Result)
One of the columns in my database is a VARBINARY data type, which is created on data import:
Code for column creation: CONVERT(VARBINARY(Max), Concat(column1, ';', column2,...)
If I was to change this in SQL, I would use the SELECT CONVERT(VARCHAR(Max), binaryColumn) FROM Table1.
Is there a way I can do the varbinary to varchar conversion in powerapp?
The gallery line entry is ThisItem.binaryColumn
Any help is appreciated, I have tried:
Substitute(JSON(varbinary, JSONFormat.IncludeBinaryData), """", "")
unsuccessfully of course.

Report
All responses (
Answers (