今天是2013年2月27日這是Wensday。 我需要一個公式,它會返回我前一個星期一的日期。這將是(2013年2月17日)上個星期一的日期Excel
我需要這樣才能用於發送電子郵件的vba代碼中的文件名或電子郵件主題。
With oMail
'Uncomment the line below to hard code a recipient
.To = "[email protected]"
'Uncomment the line below to hard code a subject
.Subject = "Current Report"
.Attachments.Add WB.FullName
.Display
End With
那麼,你到目前爲止嘗試過什麼?如果你還沒有嘗試過任何東西,那麼也許這會讓你開始:http://msdn.microsoft.com/en-us/library/aa227527(v=vs.60).aspx – Sam 2013-02-27 16:05:49
@Sam,你的鏈接缺失一個右括號。 – 2013-02-27 16:07:52
@DougGlancy是嗎?這個對我有用。我無法使用內置的SO鏈接功能,因爲MSDN鏈接本身包含括號。在編輯之前你有沒有看到它? – Sam 2013-02-27 16:12:34