I have a csv file with exported data form Access.
Problem is that I need to add 2 rows on top of the data in that csv.
Simply push down all data I exported in that csv (including headers) and add 2 rows with specific values.
I managed to write a vba to push whole data down by 2 rows, however for a love of god, I cannot edit those top blank rows now
Lets say I have this:
And need to have this:
I managed to make 3 blank rows on top, but how can I edit specific cells?
Ideally, I would "paste" another access query results into those blank rows, which would be one row with headers (so basically adding 2 rows on top of that initial data).
Problem is that I need to add 2 rows on top of the data in that csv.
Simply push down all data I exported in that csv (including headers) and add 2 rows with specific values.
I managed to write a vba to push whole data down by 2 rows, however for a love of god, I cannot edit those top blank rows now
Lets say I have this:
Header1 | Header2 | Header3 |
1 | A | C |
2 | B | D |
And need to have this:
Something here | Something else | |
Bla bla bla | bla bla | |
Header1 | Header2 | Header3 |
1 | A | C |
2 | B | D |
I managed to make 3 blank rows on top, but how can I edit specific cells?
Ideally, I would "paste" another access query results into those blank rows, which would be one row with headers (so basically adding 2 rows on top of that initial data).
Last edited: