Concatenate text and Signature type column|

Hi, please I need any help wth this code:

Column: app_url

Type: URL

Code:

CONCATENATE(
"https://www.appsheet.com/template/gettablefileurl",
"?appName=", ENCODEURL("Appname"),
"&tableName=", ENCODEURL("Tareo"),
"&fileName=", [firma]
)

Firma is a column with signature type, with values as example: "TarColaboradores_Images/43184178.FIRMA.152815.png"

 

I tried with TEXT([Firma]) and with ENCODEURL([Firma])

but nothing, no concatenate the url with the image file name. I tried with a virtual column type text and formula: TEXT[Firma] but nothing.

Any help?, please

 

Solved Solved
0 10 1,048
1 ACCEPTED SOLUTION

Creo que podría ser posible hacer ambas cosas, tanto que se vea la imágen como que aparezca en un reporte, pero ambos casos no son recomendables debido a que tendrás que desactivar el Image signing

Aquí se explica en más detalle a qué me refiero con Image signing y también te envío el enlace de cómo preparar un reporte en XLSX

Display images and documents - AppSheet Help
Use Microsoft Excel templates - AppSheet Help

View solution in original post

10 REPLIES 10

I think you still don't explain what you want to accomplish.
You want to put this in a report? You want to overlay text and image? We don't know

Hi, I want to see the signature image in excel file into a cell.

I tried with formula vía Gsheet and it works but with app formula doesn´t work.

Apart, any method by export the table via appsheet in xls file or only works with csv?


@renzogutierrez wrote:

I want to see the signature image in excel file into a cell.


Not possible IMO, AppSheet is not built to save data on a "Excel user friendly" way, think of your workbook as a Database, not a public file

PS: Unless you deactivate the Image signing and also manage to use the IMAGE() function, but this is strongly unadviced


@renzogutierrez wrote:

I tried with formula vía Gsheet and it works


Show us what you did please

signature01.JPG

I get the image of signature in cell in Google Sheet but with  formula in Gsheet, I want to create an App formula but don´t get.

Example formula in I2:

=SUSTITUIR(CONCATENAR("https://www.appsheet.com/template/gettablefileurl?appName=";"APPNAME";"&tableName="; "TABLENAME";"&fileName=";H2); " "; "%20")

Best regards

Por lo visto hablas español.

No existe una fórmula dentro de AppSheet que te vaya a generar el resultado que deseas directamente en tu datasource. Tendrás que construirlo dentro de GSheet/MSExcel directamente

Hola, sí, mi idioma natal es el español, vi en otro topic que colocaron código para hacerlo con APP formula, no tengo el link de ese topic, pero si guardé el código:

CONCATENATE(
"https://www.appsheet.com/template/gettablefileurl",
"?appName=", ENCODEURL(CONTEXT("AppName")),
"&tableName=", ENCODEURL(CONTEXT("Table")),
"&fileName=", ENCODEURL([image-or-file-column])
)

Estuve probando con el código pero no conseguí nada.

Lo otro era en caso quisiera descargar un reporte incluyendo las imágenes de firma en celdas, sería posible?, solo he visto que appsheet permite exportar data en Archivos CSV. He visto que con algún en Addon de Gsheet se puede programar exportar una hoja de Sheets u hojas y definir el envío de esa hoja(S) como archivo xls, pero no he explorado más esa alternativa.

 

Creo que podría ser posible hacer ambas cosas, tanto que se vea la imágen como que aparezca en un reporte, pero ambos casos no son recomendables debido a que tendrás que desactivar el Image signing

Aquí se explica en más detalle a qué me refiero con Image signing y también te envío el enlace de cómo preparar un reporte en XLSX

Display images and documents - AppSheet Help
Use Microsoft Excel templates - AppSheet Help

You can also try in the Format rules, selecting the type signature column and then in Workflow template format you select text

I did it like this: I create a virtual column type text and then in the formula I write the column type signature, with that I get the url address of the drawing

Top Labels in this Space