How is the IMPORT function with a VLOOKUP written? - google-sheets

Basically to import the column data from a work sheet to the work sheet being worked upon?

Related

Importhtml transpose formatting

I'm trying to import data with the importhtml function into a specific format within google sheets. Below I have an example of what the original import looks like and I am trying to format it to look like the 2nd example. Is that possible where each date has it's own column with the event to the right of it?
The tricky part is this list will auto update every week with new events so aggregating the correct dates/times into their own columns with the correct events... don't think it's possible with the widget I’m extracting from but if anyone has any ideas would greatly appreciate the suggestions.
If this works I’ll be using it to create a synced calendar with google/apple.
Here is the formula I am using: =importhtml("https://sslecal2.investing.com?columns=exc&importance=2,3&features=datepicker,timezone&countries=5&calType=week&timeZone=8&lang=1","table","1")
And here is the link to the spreadsheet if you need it
https://docs.google.com/spreadsheets/d/1IC_ZqKbLgMLksCXral5eXZcSf6CVDtTSsBxMNmbrhzo/edit?usp=sharing
You can hide the columns as a result of the import and in blank cells use
={TRANSPOSE(INDEX(IMPORTHTML(E1, "table", 1),,1)),TRANSPOSE(INDEX(IMPORTHTML(E1, "table", 1),,2))}
Share the link of the sheet so we can help you better

Import Tradingview data to google sheets

I've tried to import RSI from trading view to google sheet but I can't.
The formula I used :
=IMPORTXML("https://www.tradingview.com/symbols/NASDAQ-AAPL/technicals/","//div[#id='technicals-root']/td[#class='cell-2-juHm8n']")
Please help!
by disabling JavaScript there is nothing left to be scrapped:

Google Sheets - referencing data from another sheet "DataSheet!A1:A" want to be able to import a new sheet and update that reference... best way?

I'm not well-versed in Google Sheets or anything related to it really, but i'm doing basic google sheet formula stuff at the moment for my business, I am importing data from somewhere else and have copied over data from the import into my stats sheet using the basic copy formula
"DataSheet!A1:A"
later on, the Data Sheet will have to be updated with another imported sheet that will match in rows/columns but with new values...
... How do I reference/copy over columns from another sheet, while making it easy to update with a new import later on?
perhaps try:
={DataSheet!A1:A; DataSheet2!A1:A}

Google Sheet Importrange With Round

I want to import few columns of one Google sheet to another using importrange and want to import the numeric columns with roundup the value, is there any way to import the numeric column after roundup the source data.

ImportRange "Result to large" - How to import all the data I need?

I have a spreadsheet with 140.000 rows and 5 columns. I need to import all of that to another spreadsheet to apply a query and filter some information.
I can only import 20.000 rows with ImportRange because otherwise, I have a "Result too large" error. Doesn't matter if it is inside a QUERY formula.
¿How can I import or do a Query on all the 140.000 rows?
I haven't tried anything else cause I don't know any more tricks to make it happen.
If you are looking for a formula based solution, then use as many IMPORTRANGE as necessary to import all the required rows inside an array. The formula will look something similar to the following (assuming that A1 has the spreadsheet key )
={
IMPORTRANGE(A1,"A1:E20000");
IMPORTRANGE(A1,"A20001:E40000");
IMPORTRANGE(A1,"A40001:E60000");
...
}
Reference
Using arrays in Google Sheets
Related
Appending google spreadsheet arrays
google spreadsheet: join arrays using function NOT CODE

Resources