今天是 2013 年 2 月 27 日,也就是星期三。我需要公式,它将返回上一个星期一的日期。这将是 (02/17/2013)
我需要这样才能在发送电子邮件的 vba 代码中使用文件名或电子邮件主题。
With oMail
'Uncomment the line below to hard code a recipient
.To = "myemail@email.com"
'Uncomment the line below to hard code a subject
.Subject = "Current Report"
.Attachments.Add WB.FullName
.Display
End With