The web site you referenced nicely explains the difference between
using a worksheets codename over the label that a user assignes to the
tab.
Rather than referencing Sheets("Honda").Select, I would reference
Sheet3.Select This is good...
The problem I'm having is selecting worksheets that are not in any
order (sheet3, sheet7 and sheet8). The command:
Sheets(Array("volvo", "dodge", "honda")).Select
works really well... is there a way I can substitute sheet3 for volvo?
In the meantime, I'll try to work through the solutions you have
provided - I'm a beginner in VBA.