I want to query a bunch of files kept on my Google Drive with the following folder structure:
\2021\JUN\01JUN
\2021\JUN\02JUN
\2021\JUN\03JUN
\2021\JUN\04JUN
...
\2021\JUL\01JUL
\2021\JUL\02JUL
\2021\JUL\03JUL
\2021\JUL\04JUL
...
Inside each folder is a csv of the following structure:
In each file (Eg: ACC.txt), is the following data:
ACC,20210701,09:08,2021.80,2021.80,2021.80,2021.80,465,0
While the CSV does not have any headers, the headers are Name, Date (YYYYMMDD), Time, Open, High, Low, Close, Vol, 0
I want to find out if it is possible to query these files?
For eg: I pass 3 parameters: ACC, 20210701, 10:28
and I should be able to query the High and Volume data in that file for that Date and Time.
Is this magic possible in Google Sheets?