fuzzyizzabear
New Member
- Joined
- Feb 10, 2020
- Messages
- 1
Restarting my VBA education after several years away, and am stumped on what I imagine is a very very common situation. If anyone can point me to a Post already explaining how to do this, I will be very thankful.
Also, I want to code as good as you guy folks do. Are there particularly good courses, video series, or books for me to invest in?
SITUATION: A database is dumped into Excel, a single worksheet with many columns/fields and several thousand rows in the source. I have scrubbed the Source data--eliminated bad data such as misspellings, multiple names in a single field. I'm confident I have good Source data now.
It'll be a gigantic workbook with hundreds of sheets, likely to be unwieldy to work with but that's what my buddy asked for.
Thanks very much for the consideration!
Also, I want to code as good as you guy folks do. Are there particularly good courses, video series, or books for me to invest in?
SITUATION: A database is dumped into Excel, a single worksheet with many columns/fields and several thousand rows in the source. I have scrubbed the Source data--eliminated bad data such as misspellings, multiple names in a single field. I'm confident I have good Source data now.
- Row 1 has the field names: Name, Address, etc.
- Column A has the search criteria values: Blue, Green, Red, etc.
- Search all rows in Source worksheet where values in Column A are equal: all Blue.
- Copy those entire rows, and paste the copied rows onto a new worksheet, so all Blues on the first worksheet, all Reds on the next, etc.
- Also copy the header row from Source, and insert it to Row 1 of each new worksheet.
- Rename the worksheets with the values from Column A: "Sheet2" changes to "Blue" etc.
- Repeat all the way through the file.
It'll be a gigantic workbook with hundreds of sheets, likely to be unwieldy to work with but that's what my buddy asked for.
Thanks very much for the consideration!