Google Spreadsheet Guide: How to create custom function bound to spreadsheet

Subscribers:
613
Published on ● Video Link: https://www.youtube.com/watch?v=NZcoGS07_TA



Category:
Guide
Duration: 5:32
1,855 views
5


This just how to create custom function on google spreadsheet. This is just extend to google spreadsheet. Here is the reference link: https://developers.google.com/apps-script/guides/sheets/functions

The steps are:
1. Go to your google drive: http://drive.google.com
2.

Video's Final Script
-------------------------------

function myFunction_Experiment(input) {
return input * 2;
}

function myFunction_Triple_Experiment(input){
return input * 3;
}

function my_square_Experiment(input){
return input * input;
}







Tags:
Google spreadsheet
Custom Function
google app script
app script
google script