Google Sheets QR code "tab" -
i working google sheets make qr codes. have scanner programmed 'tab' function after every scan , works well. make single qr code has 3 different pieces of information in tab between each , enter on end. have tried many ways , found of them work fine in notepad, nothing working in form there 3 fields. form has following fields: plant, department, part# have tried using: //cell e12 has 106+%09+w6311a+%09+12345678 or 106+char(9)+w6311a+char(9)+12345678 =if(isblank(e12),"",image("https://chart.googleapis.com/chart?chs=150x150&cht=qr&chl="&e12)) //a14==106, b14==w06311a, c14==12345678 =concatenate(a14, char(9),b14,char(9),c14,char(10)) //a15==the above concatenate code =image("https://chart.googleapis.com/chart?chs=200x200&cht=qr&chl="& urlencode(join(char(10),arrayformula(a15)))) //this script called above code: /** * converts string encoded uri * * @param {string} component component want encode * @return {string}...