Concatenar texto con codigo QR

Hola,

Tengo una columna virtual que genera el siguiente codigo QR del part number de cada producto.

CONCATENATE(“https://chart.googleapis.com/chart?chs=300x300&cht=qr&chl=”&ENCODEURL([PART NUMBER]))

Como hago para que coloque arriba o debajo del codigo el part Number en texto?
Dejo una imagen editada como ejemplo

Gracias.

Try something similar to this:

My Config table has the fields:
ConfNombreEmpresa of type Text, contains a text

GenerarQR (virtual) of type Image (will generate the QR), with AppFormula:
LINKURL(“https://quickchart.io/qr?text=” & ENCODEURL([ConfNombreEmpresa]) )

PruebaTextQR (virtual) of type LongText and Formatting HTML (will generate the QR with the text above) , with AppFormula:

” & [SetCompanyName] & “

” &

Hope this can help you

2 Likes

Thanks! @JSO