Hello Stedia,
This macro creates the file if it doesn't already exist, increments the Order Number, and copies it to Range("A16") on the Active Sheet. Turns out you do need to create an instance of the Word Application for this to run. Sorry for confusion, I thought youhad Word running along with the Excel program.
Test Macro Code
Sub GetOrderNumber()
'Requires a reference to the Word x.x Object Library
Dim Order As Variant
Dim TxtFile As String
Dim WD As Object
Set WD = CreateObject("Word.Application")
TxtFile = "C:\Order Number Test.txt"
Order = WD.System.PrivateProfileString(TxtFile, "Order Number", "Last Order")
If Order = "" Then
Order = 1
Else
Order = Order + 1
End If
ActiveSheet.Range("A16").Value = Order
WD.System.PrivateProfileString(TxtFile, "Order Number", "Last Order") = Order
Set WD = Nothing
End Sub
Your Updated Macro
Sub GetOrderNumber()
'Requires a referencce to the Word x.x Object Library
Dim Order As Variant
Dim TxtFile As String
Dim WD As Object
Set WD = CreateObject("Word.Application")
TxtFile = "T:\Storage_Area\M\MacroSettings\Settings.txt"
Order = WD.System.PrivateProfileString(TxtFile, "MacroSettings", "Order")
If Order = "" Then
Order = 1
Else
Order = Order + 1
End If
ActiveSheet.Range("A16").Value = Order
WD.System.PrivateProfileString(TxtFile, "MacroSettings", "Order")) = Order
ActiveWorkbook.SaveAs FileName:="T:\Storage_Area\NEW_DOCS\SDL-LET-" & Format(Order, "00#")
Set WD = Nothing
End Sub
Sincerely,
Leith Ross
Bookmarks