importrange

IMPORTRANGE with condition

久未见 提交于 2019-12-03 23:06:00
Using Google Sheets I want, within the same document, to import data from one sheet to another using IMPORTRANGE with conditions. I have tried unsuccessfully: =IF(IMPORTRANGE("https:URL","Inc Database!B2:B300")="permanent",IMPORTRANGE("htps://URL","Inc Database!A2:A300"),"") and =QUERY(IMPORTRANGE("https:/URL", "Inc Database!A2:A300"),"SELECT Col1 WHERE Col1 <> 'permanent'") and =FILTER(IMPORTRANGE("URL","Inc Database!A1:A250"),IMPORTRANGE("URL","Inc Database!B1:B250"="venture permanent")) I want the function to say: Import any values from range A that meet criterion "permanent" in range B. A

How can I force a recalculation of cell using ImportRange function in a Google Spreadsheet?

白昼怎懂夜的黑 提交于 2019-12-03 15:33:00
I have a spreadsheet Target that uses ImportRange to get some data from another spreadsheet Source, as in A6 = query(ImportRange("mykey", "Weekly!B:BI"), CONCATENATE("select * WHERE Col1='",B3,"'"), 0) The select clause is to sub-select the data that matches on a value in B3 - if this cell value is changed then the import is updated "immediately". I want to be able to force an update if someone changes something in the Source spreadsheet so that we see it reflected in the Target "immediately". Currently this only happens "after some unspecified time" which is up to a minute or so, and too slow

How can I make an apps script to instantly allow access to all imported elements in a Google Spreadsheet?

感情迁移 提交于 2019-11-27 16:19:55
I have to work with google spreadsheets. I am using some template spreadsheets which all contain a lot of links to other spreadsheets. The problem is that whenever I make a copy of the template spreadsheet to use most of the links(created with the importrange function) require me to give them access again What I want to do is make a script that would allow me to import all the links in one press. I tried to make an app script but I can't found any way to access the textbox with the "allow access" button so that i can make my script. My questions are: is there any way to access the "allow

How can I make an apps script to instantly allow access to all imported elements in a Google Spreadsheet?

不羁的心 提交于 2019-11-26 22:26:50
问题 I have to work with google spreadsheets. I am using some template spreadsheets which all contain a lot of links to other spreadsheets. The problem is that whenever I make a copy of the template spreadsheet to use most of the links(created with the importrange function) require me to give them access again What I want to do is make a script that would allow me to import all the links in one press. I tried to make an app script but I can't found any way to access the textbox with the "allow