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,044
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