Some sheets in my spreadsheet have data filled by the Query formula.
In a sheet I have data filled by a Query of another sheet filled by a Query itself.
This double Query makes that I can't read data usign GetValues() from a script.
When I try the simplest reading using:
var sheet = SpreadsheetApp.getActive().getSheetByName('Timeline');
var data = sheet.getRange('A15').getValue();
Logger.log(data);
the outcome is empty. In the cell A15 I have a query formula calling a sheet where data are filled by a Query, in turn.
Google script can't read values from a query of a query, I reckon.
Do you have any idea please?
Thanks.