I just insert the sheet normally, by right-click > Insert > Sheet and this
puts it one sheet to the left of my last sheet so then I just left-click on
it and drag it over into the proper place at the right end..........if you
are copying an entire sheet, then there is an option in the process allowing
you to select where to put it......
Hi Katie,
If instead of inserting and dragging the tab, you want a
macro solution to simply add a sheet at
the end of the other sheet tabs you could use the following:
Sub add_sheet_at_end()
Sheets.Add After:=Sheets(Sheets.Count)
End Sub
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.