Custom Spreadsheet Functions
Create your own spreadsheet functions and share them with your entire organization.
How to Write Custom Spreadsheet Functions
def ADD_ONE(series):
return series + 1Custom functions must be fully capitalized
def MY_FUNCTION(*args, **kwargs):
return my_functions(*args, **kwargs)Custom functions must support the correct input types
Reference Type
Example Formula
Passed Type
Rolling Range Object
Displaying syntax hints inside of Mito

How to add spreadsheet functions to the Mitosheet
Passing the spreadsheet functions as a parameters
Setting an environment variable
Examples of Sheet Functions
Last updated
Was this helpful?