Reputation: 1284
I know it's possible to create a function in google sheets via the script editor, I used to be able to do it, now I'm struggling.
These functions should be accessible through a cell, and be able to use a cell.
How do I create a function, and how do I use it?
Upvotes: 0
Views: 290
Reputation: 6537
It's all described quite extensively in the docs:
https://developers.google.com/apps-script/guides/sheets/functions
To write a custom function:
function DOUBLE(input) {
return input * 2;
}
Using a custom function:
Upvotes: 2