My App includes a Workflow that generates a PDF from a Google Doc template. I have a virtual column in a specific table that creates a URL to an image using an App Formula for the column. Within the App this URL works properly. I have adjusted the security settings accordingly so that I can copy and past the URL into a browser and see the image. This virtual column is also included in my report. However the links in the report are not functioning. In looking at the url in detail I noticed that the url in the report is slightly different than what is showing in the app. Below is the App formula expression for my virtual column “Link to Receipt”. I have included the URL as it appears in the app as well as the URL as it appears in the report. In the report a “25” is inserted just after the % symbol into the url. I have hidden the actual code for the app (privacy concerns) so the urls below will not work.
App Formula:
IF(ISNOTBLANK([Receipt]),CONCATENATE(“https://www.appsheet.com/template/gettablefileurl?appName=”, ENCODEURL(“Expenses-???“), “&tableName=”, ENCODEURL(”ExpensesTable”),“&fileName=”, ENCODEURL([Receipt])), “None”)
URL as it appears in the App:
https://www.appsheet.com/template/gettablefileurl?appName=Expenses-???&tableName=ExpensesTable&fileName=ExpensesTable_Images%2F21-ab5ccbc0.Receipt.110308.jpg
URL as it appears in the report:
https://www.appsheet.com/template/gettablefileurl?appName=Expenses-???&tableName=ExpensesTable&fileName=ExpensesTable_Images%252F21-ab5ccbc0.Receipt.110308.jpg
Can anyone shed some light on why this url is changing in the report?
Thanks