QR Code Problem

I have this code: 

CONCATENATE(“https://chart.googleapis.com/chart?chs=100x100&choe=UTF-8&cht=qr&chl=https://www.appsheet.com/start/...",[Document ID]) it shows the QR Code.

However, when I try scanning it through my phone the content of the QR code shows: "https://www.appsheet.com/start/XXXXXXXXXXXXXXXXXXXXXXXXXXXXX/"

the continuation of the URL is not showing? which is ---> "#view=Documents_Detail&row=",[Document ID])"
why?

 

Solved Solved
0 3 602
1 ACCEPTED SOLUTION

I have had to use ENCODEURL() twice to get working QR codes. Below are examples to try. Replace the shortened "https://www.appsheet.com/start/..." URL with your actual one and see if that works

"https://chart.googleapis.com/chart?chs=300x300&cht=qr&chl="&ENCODEURL(ENCODEURL("https://www.appsheet.com/start/..."&[Document ID]))

or

"https://chart.googleapis.com/chart?chs=100x100&choe=UTF-8&cht=qr&chl="&ENCODEURL(ENCODEURL("https://www.appsheet.com/start/..."&[Document ID]))

 

View solution in original post

3 REPLIES 3
Top Labels in this Space