Hi

I know I can add a sheet and rename it at the same time if I do this
 Worksheets.Add.name = "testing"
but what if I want to add a sheet to a location I want and at the same time rename it, is that possible
 Worksheets.Add after:=Worksheets(3).Name = "testing"
Thank you very much.