Okay, so I think, no one seems to have exactly the same problem as I do...
I have an app writing automatically my health data into a google sheet.It does so in three different sheets inside the one file.Column A is always the date.Now, I'd would like to have a master sheet, that combines this data.
Like this:
SHEET1:
| 20/07/21 | value1 | |
| 19/07/21 | value2 |
SHEET 2:
| 20/07/21 | value3 | |
| 18/07/21 | value4 |
RESULT:
| 20/07/21 | value1 | value3 |
| 19/07/21 | value2 | |
| 18/07/21 | value4 |
So in essence, I'd like to sort by date and combine the values from the two sheets into one line so there is one date per day.Is that even possible?
I've tried different queries and IMPORTRANGEs, but to no avail.I am a sheets-newbie, though...
Any help appreciated!