I have a query (weather data) that results in multiple sub-tables. For example, the initial raw query looks like this:
Column1 | Column2 | Columns3-12 |
---|---|---|
Boston | Hourly Forecast Made Dec 6 2023 1134 UTC | |
LocalTime | Temp | ... |
12/6/2023 12:00:00 AM | 32 | ... |
12/6/2023 1:00:00 AM | 30.92 | ... |
... | ... | ... |
12/20/2023 11:00:00 PM | 38.48 | ... |
NYC | Hourly Forecast Made Dec 6 2023 1134 UTC | |
LocalTime | Temp | ... |
12/6/2023 12:00:00 AM | 24.98 | ... |
... | ... | ... |
So each "sub-table" consists of two header rows: the first with two columns including the city and the forecast date, and the second containing the column headers (12 of them, in this case).
Then we have 360 rows of data (not sure if it's always 360), followed by a blank row, and then that pattern repeats for the next city (in my example above, "NYC").
Simply removing the first row, promoting the headers from the second row and then filtering all other "non-forecast" values is easy. What I would really like to do is figure out a way to add the city name to a new column, so that I get this end result:
City | LocalTime | Temp | ... |
---|---|---|---|
Boston | 12/6/2023 12:00:00 AM | 32 | ... |
Boston | 12/6/2023 1:00:00 AM | 30.92 | ... |
Boston | ... | ... | ... |
Boston | 12/20/2023 11:00:00 PM | 38.48 | ... |
NYC | 12/6/2023 12:00:00 AM | 24.98 | ... |
NYC | ... | ... | ... |
I have tried adding index columns and referencing previous rows and all that without much success. My temporary solution will be to just use formulas in Excel itself, but I'm hoping to have a pure Powerquery solution, if only for my own education
When you're at this stage:
Add a column: