display order of worksheets

  • Thread starter Thread starter carf4F
  • Start date Start date
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?
 
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)
 
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
 
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)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top