- Local time
- Today, 22:52
- Joined
- Jul 9, 2003
- Messages
- 17,427
This is a good explanation of using an "Array Function" in Google sheets, particularly Google Apps Script. The simplest method of addressing data in a spreadsheet is to do it line by line. However this hogs resources and can take a lot longer. Harnessing an array function which extracts all of the values from the sheet in one go, then operates on them in memory and puts the answers back into the sheet. A little bit more complicated to get your head around, but much faster and uses far less resources.
A convenient way for MS Access programmers to think about Google sheets and Google Apps Script:- Think of the Google sheet as a form in datasheet view, think about Google app scripts as the code behind the form, the VBA code, but in a Google App script, you use JavaScript code. Microsoft is gradually moving some of its products over to using JavaScript code, so it is well worth getting a handle on it.
helpdeskgeek.com
A convenient way for MS Access programmers to think about Google sheets and Google Apps Script:- Think of the Google sheet as a form in datasheet view, think about Google app scripts as the code behind the form, the VBA code, but in a Google App script, you use JavaScript code. Microsoft is gradually moving some of its products over to using JavaScript code, so it is well worth getting a handle on it.

5 Google Sheets Script Functions You Need to Know
Google Sheets is a powerful cloud-based spreadsheet tool that lets you do nearly everything you could do in Microsoft Excel. But the real power of Google Sheets is the Google Scripting feature that comes with it. Google Apps scripting is a background scripting tool that works not only in Google...
