保存发票,自动进入文件夹根据月份。这意味着,如果发票日期在2023年1月15日,所以当它保存将进入一月文件夹,而不是其他月份,如五月六月等。
Sub SaveInvoice()
Dim path As String
Dim MyFile As String path = "\\Japan\admin\Planning & Costing\Finance\Billing\DATA BILLING\IMPORT\2023\"
MyFile = Range("C13") & "_" & Range("H11") & "_" & Range("J13").Text
'create invoice in XLSX format
ActiveWorkbook.SaveAs Filename:=path & MyFile & ".xls", FileFormat:=xlOpenXMLWorkbookMacroEnabled
'ActiveWorkbook.Close
Application.DisplayAlerts = True
MsgBox "Saving Complete! Thank you~"
End Sub
1条答案
按热度按时间a0x5cqrl1#
按年和月将文件保存在子文件夹中