So far I have got this
Sub email()
'
' email Macro
' Copy and Email Daily Sales Sheet
'
' Keyboard Shortcut: Ctrl+e
'
'Copy to new sheet
Sheets("Daily").Select
Sheets("Daily").Copy
Cells.Select
Range("E3").Activate
Selection.Copy
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
'Save Function
Dim savename As String
savename = Range("M1") 'This is the cell with the info I need in the file 'name
ActiveWorkbook.SaveAs "C:\daily Sales\" & "Week " & "savename" & ".xls"
'Email Function
ActiveWorkbook.SendMail Recipients:="sale@domain.com", Subject:="Order", ReturnReceipt:=False
MsgBox "Your Request Has Been Sent", , "Daily Sales Week "
End Sub
The problem I am having is with the savename. Instead to the file saving as Week 1, it is saving as Week savename.
Any help would be great
Thanks