Automatically running a marco on specific day

S

Scott

I have built a macro running several reports every day.
there is one specific report in the macro I only want to
run on thursday
 
J

Jim/Chris

Put the following in the the thursday report line. This
assumes your calendar starts on a Sunday.

Condition Weekday(Date())=5
Action Print Thursday report

Jim
 
S

Scott

Thanks
-----Original Message-----
Put the following in the the thursday report line. This
assumes your calendar starts on a Sunday.

Condition Weekday(Date())=5
Action Print Thursday report

Jim


.
 
Top