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}            encoded uri component.  * @customfunction  */ function urlencode ( component ) {     if ( component && component.map ) {     return component.map ( urlencode );     logger.log(component);   }   else {     return encodeuricomponent ( component || "" ) ;     logger.log("2 "+component);   }  } 

as said, work fine in word or notepad, put information 1 field of form. 1 scan quicker current 3 individual scans do. there coding method specific fill in forms?

thanks, josh


Comments

Popular posts from this blog

ruby - Trying to change last to "x"s to 23 -

jquery - Clone last and append item to closest class -

c - Unrecognised emulation mode: elf_i386 on MinGW32 -