How to call an Apps Script library function in Google Sheet
问题 I created a Library in Google script as a standalone script with a function function1 . I published a version of this script. I also have a spreadsheet, and using a bound script, I added my library with identifier XXXX and managed to launch from scripts.google.com the function using a wrapper around function1 and logging the results : function function2() { return XXXX.function1(); } function test() { Logger.log(function2()); } The problem is I cannot call this function from a cell in the