Google Workspace: How To Create Custom Function Bound To Spreadsheet

Опубликовано: 15 Октябрь 2024
на канале: Totardo Tech
1,857
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-sc...

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;
}