问题 Is it possible to call any of the Google Sheets formulas from within your own Google Apps script custom function? If so, how? It obviously doesn't work to merely use the formula name like you would inside the sheet. Like this, which is what I was hoping would work: function myCustomFunction() { return TDIST(1,30,1); // calling =myCustomFunction() does not work due to TDIST giving a ReferenceError, even though =TDIST(1,30,1) works inside the spreadsheet } But since Google's built-in formulas