Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
Thanks all of you experts for being such a great help in solving my programming issues. I would like to know the best method for simplyfying this bit of code: Private Sub Save_DAILY_REPORT() 'TO SAVE REPORT FILE If Weekday(Now()) = 1 Then _ ActiveWorkbook.SaveAs Filename:= _ "C:\Daily Report\Archives\DAILY REPORT" & Format(Date, " dd-mmm-yyyy") & ".xls", _ FileFormat:=xlNormal, Password:="", WriteResPassword:="", _ ReadOnlyRecommended:=False, CreateBackup:=False End If If Weekday(Now()) = 2 Then _ ActiveWorkbook.SaveAs Filename:= _ "C:\Daily Report\Monday\DAILY REPORT" & Format(Date, " dd-mmm-yyyy") & ".xls", _ FileFormat:=xlNormal, Password:="", WriteResPassword:="", _ ReadOnlyRecommended:=False, CreateBackup:=False End If If Weekday(Now()) = 3 Then _ ActiveWorkbook.SaveAs Filename:= _ "C:\Daily Report\Tuesday\DAILY REPORT" & Format(Date, " dd-mmm-yyyy") & ".xls", _ FileFormat:=xlNormal, Password:="", WriteResPassword:="", _ ReadOnlyRecommended:=False, CreateBackup:=False End If If Weekday(Now()) = 4 Then _ ActiveWorkbook.SaveAs Filename:= _ "C:\Daily Report\Wednesday\DAILY REPORT" & Format(Date, " dd-mmm-yyyy") & ".xls", _ FileFormat:=xlNormal, Password:="", WriteResPassword:="", _ ReadOnlyRecommended:=False, CreateBackup:=False End If If Weekday(Now()) = 5 Then _ ActiveWorkbook.SaveAs Filename:= _ "C:\Daily Report\Thursday\DAILY REPORT" & Format(Date, " dd-mmm-yyyy") & ".xls", _ FileFormat:=xlNormal, Password:="", WriteResPassword:="", _ ReadOnlyRecommended:=False, CreateBackup:=False End If If Weekday(Now()) = 6 Then _ ActiveWorkbook.SaveAs Filename:= _ "C:\Daily Report\Friday\DAILY REPORT" & Format(Date, " dd-mmm-yyyy") & ".xls", _ FileFormat:=xlNormal, Password:="", WriteResPassword:="", _ ReadOnlyRecommended:=False, CreateBackup:=False End If If Weekday(Now()) = 7 Then _ ActiveWorkbook.SaveAs Filename:= _ "C:\Daily Report\Archives\DAILY REPORT" & Format(Date, " dd-mmm-yyyy") & ".xls", _ FileFormat:=xlNormal, Password:="", WriteResPassword:="", _ ReadOnlyRecommended:=False, CreateBackup:=False End If Thanks in advance for your help. |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Simplify code | Excel Worksheet Functions | |||
simplify code | Excel Programming | |||
Simplify Code help | Excel Programming | |||
Please help me simplify the given code | Excel Programming | |||
Simplify this code | Excel Programming |