Hi all,
This is my first post here so here it goes...

I'm building a DTS package and I got 7 different path in it. It starts out with a dynamic property task that reads some values from some ini files, then I got a ActiveX script that puts those values into my text files as file names and the email address i email the results to.

I am creating 6 reports that will run every day and they are fine. A datatask runs a scrips, makes a cvs file, zip it and email it. No problem. But now i'm trying to put a report that only should run once a month. So i'm testing to see if it is the first of the month and then:
Code:
DTSGlobalVariables("SkipTask").Value = True
so the SkipTask value is true if it is the first of the month. Now I'm trying to skip the datapump task, the cvs file task and zip file task that belong to that report, but still email the other reports. Is this possible?

I'm been able to skip the tasks using the script from here but the email task does not run so it looks like it thinks my last report didn't succeed.

Any way I can do this? I really needs some help with this thing