In Google sheets, how does one either return a blank cell or perform a function based on another cells lack of content?

If you want to end up with a truly ‘blank’ value, you can use the expression IFERROR(0/0). This is different from an empty string which is what you get when you use “”. A cell with an empty string will not test true using ISBLANK(), but IFERROR(0/0) will. For example: =IF(ISBLANK(A1),IFERROR(0/0),”not blank”) How this works: … Read more

External API call in Google Spreedsheet is possible?

There’s a way to make API calls and have the results go into a spreadsheet – the only way I know to do it is create/open the target spreadsheet, go to tools and then Script editor, and use this as a bound script: function Maestro() { var ss = SpreadsheetApp.getActiveSpreadsheet(); //get active spreadsheet (bound to … Read more

PHPExcel very slow – ways to improve?

Is it populating the worksheet? or saving? that you find too slow? How are you populating the spreadsheet with the data? Using the fromArray() method is more efficient than populating each individual cell, especially if you use the Advanced Value Binder to set cell datatypes automatically. If you’re setting values for every individual cell in … Read more

What is the easiest way to convert an Excel spreadsheet with tabular data to JSON? [closed]

Assuming you really mean easiest and are not necessarily looking for a way to do this programmatically, you can do this: Add, if not already there, a row of “column Musicians” to the spreadsheet. That is, if you have data in columns such as: Rory Gallagher Guitar Gerry McAvoy Bass Rod de’Ath Drums Lou Martin … Read more

tech