Something like this?...
'--
Sub DailyProgram()
'Existing code followed by...
If WeekDay(Date, vbSunday) = vbFriday Then
Call WeeklyProgram
End If
End Sub
'--
Sub WeeklyProgram()
'Existing code here
End Sub
--
Jim Cone
San Francisco, USA
http://www.realezsites.com/bus/primitivesoftware
"zen65"
wrote in message
I have two separate macro programs:
1. Run_Daily() - which is run each day, Monday to Friday.
2. Run_Weekly() - which is run only on Friday.
How can I combine them into a single program so that they still run
correctly?
Thank you for any help.
zen65