Company logo
  • Jobs
  • Bootcamp
  • About Us
  • For professionals
    • Home
    • Jobs
    • Courses
    • Questions
    • Teachers
    • Bootcamp
  • For business
    • Home
    • Our process
    • Plans
    • Assessments
    • Payroll
    • Blog
    • Calculator

0

61
Views
UrlFetchApp.fetch() skip on empty cell

I've written a script that gets an image url from a cell in Google Sheets and adds that image to a template in Google Docs. However, when the cell is empty, the script crashes:

var beforePhoto1 = UrlFetchApp.fetch(row[14]).getBlob();

Really new to programming and would appreciate anyones help as to how to prevent the above code from crashing in the event a cell is empty

7 months ago · Juan Pablo Isaza
1 answers
Answer question

0

Usually there are two options:

  1. Check the value before:
if (row[14] != '') {
  var beforePhoto1 = UrlFetchApp.fetch(row[14]).getBlob();
} else {
  console.log('row[14] was empty');
  var beforePhoto1 = 'default_value';
}

// rest code
  1. Try to use the value and skip any error with try/catch:
try {
  var beforePhoto1 UrlFetchApp.fetch(row[14]).getBlob();
} catch(e) {
  console.log('row[14] was empty');
  var var beforePhoto1 = 'default_value';
}

// rest code
7 months ago · Juan Pablo Isaza Report
Answer question
Find remote jobs