Google Sheets - QR Code - Generate QR Images with a Formula

Поделиться
HTML-код
  • Опубликовано: 2 окт 2024

Комментарии • 60

  • @InsideMyWall
    @InsideMyWall 3 года назад +1

    Very good video. Kindly make a video on How to Scan Barcode or QR Code and send it back to Google Sheets for real time updates. Also guide how to generate a QR code in sheets having a picture inside it.

  • @andymackie4279
    @andymackie4279 3 года назад +1

    Thank you for your tutorials, it really helped me a lot. Please if you're looking for requests can you make a tutorial on how i can scan QR codes and encodes to google sheet. TIA

  • @9ebooks
    @9ebooks 4 года назад +1

    Hello sir ive trying your json Google sheet tutorial with google book api but it doesn't work it returns undefined because the json is complicated can u do a tutorial about that please please

  • @rafsan_jane
    @rafsan_jane 4 года назад

    You are awesome, I am really grateful for your all videos.

  • @stansuen8072
    @stansuen8072 2 года назад

    Great video. Is there anyway we can generate an image directly within a custom function using app script without the need of an external server service and return it as an image object just like image() does? Or perhaps there may be some javascript that can be called upon to generate the image with in the app script? (The reason behind this is that Google Chart function really need a lot of improvement)

  • @skorpius2029
    @skorpius2029 3 года назад +1

    Thanks a lot. Very good method of generating qr codes in larger quantities.

  • @dr.talankijeevankumar1123
    @dr.talankijeevankumar1123 4 года назад +1

    Thank you very much for making a video on generating the bulk QR code in a single go. The video is simple with minimum steps. Will you please let me know whether there is any provision to add two/three/four columns instead of one. If yes, will you post the formula here?

  • @santosahernandezmendoza7147
    @santosahernandezmendoza7147 4 года назад +2

    I find this tutorial too useful. I suggest a second part where you can show us the usefulness of this powerful tool. Thank you, teacher.

  • @fvgoya
    @fvgoya 4 года назад

    Man, this video is really awesome!! Very handy! Will be nice to see more, how can I say, integrations (?!?) like this one. Thank you!

  • @Nilsolanki1986
    @Nilsolanki1986 4 года назад +1

    where is or code link

  • @shreyasgpt95
    @shreyasgpt95 4 года назад +4

    Can you also tell us how to download the qr codes that have been generated using these formulas?

  • @drbahsha
    @drbahsha Год назад

    Using array formula will be awesome..Thanks Ben Collins

  • @AhmadAhmad-gh5op
    @AhmadAhmad-gh5op 3 года назад

    how can link a image file location with a fixed QR code...so if the image is chnaged...Scan result should show new image....any idea how to do

  • @dwdanceStudio
    @dwdanceStudio Год назад

    it works ty - Hans

  • @kiansaghafi8681
    @kiansaghafi8681 4 года назад +1

    thank you

  • @williamnjau3987
    @williamnjau3987 4 года назад +1

    This popped in my recommendations when I just needed it! Thanks, dude!

  • @JuanLopez-js3jp
    @JuanLopez-js3jp 4 года назад +1

    How can I send email with attachment img code?

  • @lacs83
    @lacs83 4 года назад

    Hi! Good Video.
    Time ago, you could do this work using Google Api Chart, but no more... It's deprecated.

  • @AIComputerScience
    @AIComputerScience 3 года назад

    How would I estimate cost to generate one qr code with API

  • @Mayrul7
    @Mayrul7 4 года назад

    how to copy the qr code image to another spreadsheet?

  • @getdavemoore
    @getdavemoore 4 года назад

    Always good info from you - thanks.
    Q1: The new-ish 'insert > image in cell' function is more useful (as can take our own google images instead of .jpg links) but is there a way to code it rather than using mouse clicks? (next video...? ;) And could it then be put into an array formula to read addresses from one column and automatically insert images into another column?
    thanks again :)

  • @ironmanlifts
    @ironmanlifts 4 года назад

    Love your videos and I highly recommend them ! :) I was wondering if there is a way or how would I go about making a chrome extension that saves data on google sheets?? I already know how to make extensions and store with local storage chrome API (chrome.storage.local.set). I just don't know how I would go about linking the chrome local storage into a spread sheet ?

  • @johnrumm4786
    @johnrumm4786 4 года назад

    Nice demo, thanks, really enjoying your videos!
    Have you ever thought of doing a google sheets/script for implementing a bot for MediaWiki servers? I can think of some cool applications for being able to script updates to a wiki page for example.

  • @madhavan9644
    @madhavan9644 4 года назад

    Parcipate photo including add print certificate please tell me sir

  • @luciolibanori
    @luciolibanori 3 года назад

    I'm wondering if it would be possible to add control characters like Tab and Enter with this method. Regular escape sequences like \t and
    don't work. I also tried ~d009 and ~d013 without success. By the way... I'm a fan of your channel. Thanks for sharing these amazing classes.

    • @ExcelGoogleSheets
      @ExcelGoogleSheets  3 года назад

      I'm not sure I understand. What are you trying to escape?

    • @nerearita
      @nerearita 3 года назад +1

      cell values: &ENCODEURL(A3)
      spaces blanks between words: &"%20"
      line breaks between sentences: &"%0A"
      values ​​written manually in the function: &"Text"

    • @luciolibanori
      @luciolibanori 3 года назад

      @@nerearita That works!!!! Thank you so much for your help.

    • @nerearita
      @nerearita 3 года назад +1

      @@luciolibanori Glad I was able to help: D

  • @ManojGuptahome
    @ManojGuptahome 3 года назад

    Thanks for a very useful tip. However I am failing to transfer it to Docs and then to a pdf document.
    I am using Google App Script to work in a spreadsheet and make a pdf from the information. I am trying to make a qr code with that information. I tried to to do a copy paste special too. I also tried to paste it in slides. Please help me.

    • @ExcelGoogleSheets
      @ExcelGoogleSheets  3 года назад +1

      You'll need to add the image directly to your Doc. Something like.
      const blob = UrlFetchApp.fetch("imgasite.com/locnameofimage.png").getBlob()
      const cursor = doc.getCursor()
      cursor.insertInlineImage(blob);

    • @ManojGuptahome
      @ManojGuptahome 3 года назад

      @@ExcelGoogleSheets Thank you very much. I cant open the link, however I have a hint and I will try to do it.

  • @JoaquinVogt
    @JoaquinVogt 3 года назад +2

    Great tutorial!, Thanks.
    How do you export those QR codes as images, ideally named after the value of one of the cells..

  • @pichit.raetai
    @pichit.raetai 4 года назад

    Waiting for your video

  • @NickB-pe5ek
    @NickB-pe5ek 4 года назад

    How can I add additional information to the qr code so my google app scripts can grab the data from the URL ? I want the link to be https.....data=url/helloworld/. How do I add "helloworld" to the qr code link and then later grab it from Google app scripts?
    Your videos have been immense help. Thanks!

  • @wahyudikho615
    @wahyudikho615 4 года назад

    what if I use TEXT in column A instead of URL, how to adjust the formula ? many thanks for your help

  • @michaelsglas
    @michaelsglas 3 года назад

    what if you don't have a url but you just want text could that work?

  • @doeyehof
    @doeyehof 3 года назад

    A very clear tutorial!! Thanks!

  • @nim358
    @nim358 4 года назад

    superb teacher..thanks a lot !

  • @liangmale
    @liangmale 4 года назад

    Excellent as always, very useful

  • @hyper-focus1693
    @hyper-focus1693 Год назад +1

    Dude you are absolutely amazing. I feel like writing a whole paragraph about how you helped me solve most of my problems but there's no point in that.
    Thanks man.

  • @jahidpinjar4607
    @jahidpinjar4607 4 года назад

    How to add two or more column data like A3 A4 etc?

    • @nerearita
      @nerearita 3 года назад

      &ENCODEURL(A3)&ENCODEURL(A4)
      spaces blanks between words: &"%20"
      line breaks between sentences: &"%0A"
      values ​​written manually in the function: &"Text"

  • @paulloup5210
    @paulloup5210 4 года назад

    Thank you very much !!!

  • @opionetics
    @opionetics 4 года назад

    What about the Google QR Code API?

  • @hadireg
    @hadireg 3 года назад

    👍👍👍

  • @jowhr99
    @jowhr99 3 года назад

    Thanks bro!!

    • @jowhr99
      @jowhr99 3 года назад

      image function doesn't work with me

  • @mastatekniks2653
    @mastatekniks2653 4 года назад

    Thank you very much for this very informative video. But how do I save the images into my disk?

    • @ExcelGoogleSheets
      @ExcelGoogleSheets  4 года назад +1

      I have an upcoming video for those who need actual image files. Should be live on the channel next week.

    • @mastatekniks2653
      @mastatekniks2653 4 года назад

      @@ExcelGoogleSheets Great! Thanks a ton. I will tune in for that definitely.

  • @avantiya
    @avantiya 4 года назад +1

    Can I download those images (QR Codes) as separate Image files ?
    Can those images (QR Codes image files) have the respective name from which they are generated ?

    • @ExcelGoogleSheets
      @ExcelGoogleSheets  4 года назад +2

      Use node ruclips.net/video/UjJSJAMcD44/видео.html

  • @adnanakhtar7919
    @adnanakhtar7919 3 года назад

    it didn't generate an image for me, everything is okay
    but in vain