Macro Question

F

flummi

right click on the sheet tab
select "Copy or Move"
then select "Move to End"

Regards

Hans
 
S

Stefi

Hi flummy,

I think Greg wants a macro doing this, because I read his very similar
question among the Programming topics!

Greg, record as a macro what flummi said!

Stefi


„flummi†ezt írta:
 
B

britwiz

Hi Greg

If you want a macro rather than click and drag, try this in a module:

Sub MoveSheet()
ActiveSheet.Move After:=Sheets(Sheets.Count)
End Sub

Regards

Steve
 
Top