Link to home
Start Free TrialLog in
Avatar of brothertruffle880
brothertruffle880Flag for United States of America

asked on

Excel 2010 VBA - Parsing a large worksheet into smaller worksheets

I have a worksheet of cars (yes it's simple but I'm still learning this VBA stuff) and would like to:
Take each group of cars and copy it to a new sheet in the same workbook.
All chevys placed on a new sheet in the same workbook.
All Rolls placed on a new sheet in the same workbook.
All VW's placed on a new sheet in the same workbook.
See attached workbook.
cars-example-prelim.xls
Avatar of Steve
Steve
Flag of United Kingdom of Great Britain and Northern Ireland image

Using VBA for this is not too hard with some loops, but does this have to be VBA?
If you create a pivot table based upon the data, then list by model and count of sales, if you then click on the counts it will create the sheet for you.
I can do the VBA if this is important to you, but sometimes simpler is better.
SOLUTION
Avatar of Steve
Steve
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial