Effortless API Creation: Convert Your Google Sheets with Free Apps Script Magic

แชร์
ฝัง
  • เผยแพร่เมื่อ 23 ธ.ค. 2024

ความคิดเห็น • 18

  • @NewAnalytics
    @NewAnalytics ปีที่แล้ว +3

    I just got the access to the file. This was very helpful and a faster method to fetch data from sheets in a script. Thank you!

  • @downtown7807
    @downtown7807 9 หลายเดือนก่อน +1

    thank you so much

    • @OutrightSystems
      @OutrightSystems  9 หลายเดือนก่อน

      Thanks for watching! Please like and subscribe to our TH-cam channel

  • @bankoledada
    @bankoledada ปีที่แล้ว

    this is brilliant

  • @briangelhaus8267
    @briangelhaus8267 ปีที่แล้ว

    Where is the code?

    • @OutrightSystems
      @OutrightSystems  ปีที่แล้ว +1

      Thanks for watching!
      Script URL: docs.google.com/document/d/1fEsTu56Iynm6e2xQiiuJdndjGsybZpv0DfIHSd80NAE/edit?usp=sharing

  • @multimediaproduction6674
    @multimediaproduction6674 ปีที่แล้ว +1

    where is the code buddy. your document is protected

    • @OutrightSystems
      @OutrightSystems  ปีที่แล้ว +1

      Thanks for watching!
      Script Code: docs.google.com/document/d/1fEsTu56Iynm6e2xQiiuJdndjGsybZpv0DfIHSd80NAE/edit?usp=sharing

    • @failurenotsuitable9115
      @failurenotsuitable9115 ปีที่แล้ว

      Did you get this script code ,
      Can you send me

  • @rb8058
    @rb8058 10 หลายเดือนก่อน

    Thanks for the walkthrough, but we won't be able to do much when the file with the code you are linking to is private. Please unrestrict.

    • @OutrightSystems
      @OutrightSystems  10 หลายเดือนก่อน

      "Hi, thanks for watching! Please like and subscribe to our TH-cam channel."
      "If you're interested in this code, please DM me at promotion@outrightcrm.com."

  • @karlospatagonia5133
    @karlospatagonia5133 9 หลายเดือนก่อน

    Gracias ☺

    • @OutrightSystems
      @OutrightSystems  9 หลายเดือนก่อน

      Thanks for watching! Please like and subscribe to our TH-cam channel

  • @haha7836hahah
    @haha7836hahah ปีที่แล้ว +1

    make the file public

    • @failurenotsuitable9115
      @failurenotsuitable9115 ปีที่แล้ว

      Did you get this script code ,
      Can you send me

    • @haha7836hahah
      @haha7836hahah ปีที่แล้ว

      @@failurenotsuitable9115
      function doGet(req) {
      var doc = SpreadsheetApp.getActiveSpreadsheet();
      var sheet = doc.getSheetByName('sheet1');
      var values = sheet.getDataRange().getValues();
      var output = [];
      for (var i = 0; i < values.length; i++) {
      if (i == 0) {
      continue;
      }
      var row = {}; // Create a new row object for each row
      for (var j = 0; j < 100; j++) {
      if (!values[i][j]) {
      break;
      }
      row[values[0][j]] = values[i][j];
      }
      output.push(row); // Push the row object to the output array
      delete row;
      }
      return ContentService.createTextOutput(JSON.stringify({ data: output })).setMimeType(ContentService.MimeType.JSON);
      }