Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Guys
I have 12 tabs in my script - one for each month.
I want to be able run all tabs for each month on Sunday but only the current month from Monday to Saturday.
Is this possible?
If so, how?
Any help would be appreciated.
Cheers,
Magen
Hi,
You could simply add a where clause. Somehting like
Where Weekday(Today())= 'Sun'
then expand from there
Mark
May be like:
If Weekday(today())='Sun' Then
Exit Script; // This might not be required
Set vNothing='DoNothing';
Else
Do.... this
End If