display order of worksheets

C

carf4F

I would like to have multiple worksheets in the same book displayed in
a predetermined order whichever worksheet I work on. How can I do this?
 
B

Bob Phillips

You can easily move theme around from code say in the workbook open. Is that
what you mean?

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)
 
F

FennisDuck

what is the code to move the worskheets 1,2,3 etc
I am NOT the original poster but am very intrested thanks to original poster
and Bob Philips
 
B

Bob Phillips

To organise say sheets 1,2,3 to 3,2,1

Worksheets(2).Move after:=Worksheets(3)
'sheet index 2 has now become sheet index 3, so
Worksheets(1).Move after:=Worksheets(3)


--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)
 
D

David McRitchie

Top