Macro Question

  • Thread starter Thread starter Greg
  • Start date Start date
right click on the sheet tab
select "Copy or Move"
then select "Move to End"

Regards

Hans
 
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:
 
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
 
Back
Top