I have created the following formula to filter my data out. What I am attempting to do is to show the job only if there is a current problem. I have setup the formula to reverse the workflow. ie. The last task to be completed is tested first.
The dates are there so that you can see the data. My problem is that this job is showing up on the report and I don't understand why.
HELP!!!!
Code:
if {FactSched} < currentdate or {FactSched} < {FactStart}then true
08/02/01 08/14/01 08/02/01 07/27/01
else if {CutSched} < currentdate or {CutSched} < {CutStart}then true
07/25/01 08/14/01 07/25/01 07/31/01
else if {MtlSched} < currentdate or {MtlSched} < {MtlStart}then true
07/18/01 08/14/01 07/18/01 07/24/01
else if {EngSched} < currentdate or {EngSched} < {EngStart}then true
No Date 08/14/01 No Date No Date
else if {PurchSched} < currentdate or {PurchSched} < {PurchStart}then true
05/17/01 08/14/01 05/17/01 06/06/01
The dates are there so that you can see the data. My problem is that this job is showing up on the report and I don't understand why.
HELP!!!!