Hi,
I need to to have a workbook save 3 ways and I also need it to post to a sharepoint site.

1. I need it to save as an excel workbook named, "MEF " to a file path for instance C:\Users\Lily\Documents
2. I need it to save as a single file webpage also named "MEF" to the same file path ^.
3. I need it to save in a different folder C:\Users\Lily\Documents\work with the name "MEF dd-mm-yyy" also as an excel workbook not single file webpage
4. I need it to upload to a sharepoint site.

Thanks, your help is appreciated!

Sub SaveMEF()
'
' SaveMEF Macro
'

'
ActiveWorkbook.SaveAs Filename:="C:\Users\Lily\Documents\MEF.xlsm", _
FileFormat:=xlOpenXMLWorkbookMacroEnabled, CreateBackup:=False
ActiveWorkbook.SaveAs Filename:="C:\Users\Lily\Documents\MEF.mht", _
FileFormat:=xlWebArchive, CreateBackup:=False
End Sub
Public Sub SaveAsDate()
DirPath = "C:\Users\Lily\Documents\work\MEF.xlsm"
DateStr = Format(Date, "dd-mm-yy")
ActiveWorkbook.SaveAs Filename:=DirPath & DateStr & Comment
End Sub