How to paste Google Sheets Content into a Google Slide using Apps Script?
问题 I´m searching now for three days and cannot find a method to get a Google Sheets Range into a Slide. var range = SpreadsheetApp.getActive().getActiveSheet().getRange('A1:B3'); var slidesPage = SlidesApp.openById(presentationId).getSlides()[0]; slidesPage.insertTable(range); It seems it is only possible to copy a table from another slide and paste it into the page. Why is it not possible to paste a range from a spreadsheet into the Slide?. At least it is possible manually. Thanks for every