Sub addshts()
For i = 1 To InputBox("Enter sheets desired") - 1
Sheets("Master").Copy After:=Sheets("Master")
Next i
End Sub
--
Don Guillett
Microsoft MVP Excel
SalesAid Software
(E-Mail Removed)
"JDaywalt" <(E-Mail Removed)> wrote in message
news:BA2E4EA9-91DB-4969-B55E-(E-Mail Removed)...
>I have a sheet tab that is named "MASTER". I am trying to write a macro
>that
> will copy this sheet tab multiple times based upon the value in cell A1 of
> a
> sheet tab called "QTY". For example, if the value on the QTY tab is "4",
> the
> "MASTER" tab will be copied 4 times---always placing the new tab at the
> "end"
> of the sheet tab block. Can someone help with this?