We have recently noticed that in the Inventory with bar code scanner template the QR generation
process is not working properly
This system is setup in the Items - Inventory sheet in the template where in the Print labels
tab you can get QR codes generated for each Item in your master list of inventory
![](https://i.imgur.com/4FzBhLsh.png)
The QR code generation is a fairly simple formula where it takes the unique SKU of the item and uses a chart API call to generate the codes
![](https://i.imgur.com/FlIE7Vsh.png)
Within the template we would call the Google chart API - so the formula for it would be slightly different
=ARRAYFORMULA(IF(Items!C2:C="","",IMAGE("https://chart.googleapis.com/chart?cht=qr&chs=500x500&chl="&Items!C2:C)))"
You can see the chart.googleapis
link in the formula above
However recently this API call seems to not be working and has possibly been deprecated
A workaround for this is a chart API provided by GO QR for free - you can use their API to generate the code
The formula would then change with the GO QR API URL
=ARRAYFORMULA(IF(Items!C2:C="","",IMAGE("https://api.qrserver.com/v1/create-qr-code/?size=150x150&data="&Items!C2:C)))"
We are still looking to see if there is a new Google chart API which we can use - stay tuned!