'First hide all the sheets
Sheets("Trucks").Visible = False
Sheets("Trailers").Visible = False
Sheets("Containers").Visible = False
'Show the tab that was selected in your dropdown
'choice is the value of your listbox or cell where the dropdown is, assuming the dropdown uses the tab names
Sheets(choice).Visible = True
|