Fallenwing
Programmer
Okay, this one is more tricky. I want the current Workbook to save in a directory with the next consecutive open number. It references a cell and uses that name. Here is some sample code
' Choosing the Saving Name
' If Name Is Specialty ie. Cornie 09
If Range("PoName"
.Value > 1000000 Then
President = Range("PoName"
.Value
' Insert the Referencing Code Here <<--->>
End If
If Range("Machine"
.Value = "Mill" Then ChDir "C:\Miller"
ActiveWorkbook.SaveAs (President)
End Sub
So in the Referencing Code Line I want it to look in the C:\Miller folder for a document already called something that starts with Cornie - like Cornie 01, Cornie 02, and then save this(the PoName) with the next number availible - Cornie 03.
Is this Possible? Any help would be cool.
' Choosing the Saving Name
' If Name Is Specialty ie. Cornie 09
If Range("PoName"
President = Range("PoName"
' Insert the Referencing Code Here <<--->>
End If
If Range("Machine"
ActiveWorkbook.SaveAs (President)
End Sub
So in the Referencing Code Line I want it to look in the C:\Miller folder for a document already called something that starts with Cornie - like Cornie 01, Cornie 02, and then save this(the PoName) with the next number availible - Cornie 03.
Is this Possible? Any help would be cool.