I have a workbook that i want to save Specifc Sheets from into a new workbook. I want to change a cell value... say A1... in the first sheet for each instance of the new workbook save. I can get one iteration w/o any problems, but when the code goes to create the 2nd workbook copy using the 2nd value of A1, it overwrites the first saved workbook A1 cell with the current A1 value for the 2nd save...
Sub writefirst()
    Dim wkb As Workbook
    Set wkb = ThisWorkbook
 wkb.Activate
    ThisWorkbook.Sheets("Round 1").Range("B3").Value = "1"
    Sheets(Array("Quest Info", "Quest Targets", "Milestone Steps", "Quest Config")). _
        Copy
    ActiveWorkbook.SaveAs FileName:= _
        "/Users/me/PuzzleOct2018_1.xlsx" _
        , FileFormat:=xlOpenXMLWorkbook, CreateBackup:=False
    ActiveWorkbook.Close
 wkb.Activate
    ThisWorkbook.Sheets("Round 1").Range("B3").Value = "2"
    Sheets(Array("Quest Info", "Quest Targets", "Milestone Steps", "Quest Config")). _
        Copy
    ActiveWorkbook.SaveAs FileName:= _
        "/Users/dme/PuzzleOct2018_2.xlsx" _
        , FileFormat:=xlOpenXMLWorkbook, CreateBackup:=False
    ActiveWorkbook.Close
 
    