Good evening
Please
How to display the QR code generated by Appsheet in images on Google Sheets?
Thanks.
Good evening
Please
How to display the QR code generated by Appsheet in images on Google Sheets?
Thanks.
AFAIK, AppSheet does not have functionality to generate a QR code. Perhaps your AppSheet app includes a connection to some other service that generates the image.
Regardless, if you have a URL for an image, you could use Sheets’ IMAGE function to display the image with a spreadsheet.
You can show QR-Codes on Google Sheet’s tables themselves (nothing to do with AppSheet).
Supposing you need to create QR-Codes for all rows of column A and show them on column B, just place this formula in cell B1 (column B must be entirely blank beforehand).
=ARRAYFORMULA(
IMAGE(“https://chart.googleapis.com/chart?chs=500x500&cht=qr&chl=”&ENCODEURL(A1:A), 1)
)