advlghtcon
MIS
Our users currently have to run 25 seperate reports to obtain information. I would like to have one report list our 25 separate numbers. The problem is that each report has different selectors. As in, one excludes a certain criteria where another does not. Therefore, just the select expert alone does not help. Subreports take to long. I've tried to put in "If-then-else" scripting built as a formula field and couldnt get it to exclude any records. Am I on the right track with have 25 different formula fields on one report, each pulling the number we need? Is there an easier way to combine them all into one report? All we need is total numbers, nothing fancy. Any ideas would help.
This is a copy of some of what I've tried to no avail:
If {Trips.Initial Priority}<>"Code 10 - Standby / Spc. Event" Then
If {Trips.Initial Priority}<>"Code 99 - Out of Service" Then
If {Trips.Call Type}="ALS" Then
If {Trips.Call Type}="BLS" Then
If {Trips.Cancel Reason}<> "Communications Error"or {Trips.Cancel Reason}<>"Data Entry Error"
or {Trips.Cancel Reason}<>"OOS-Cleaning"or {Trips.Cancel Reason}<>"OOS-Detail"
or {Trips.Cancel Reason}<>"OOS-Equipment"or {Trips.Cancel Reason}<>"OOS-Mech. Critical Failure"
or {Trips.Cancel Reason}<>"OOS-Past Off Time"or{Trips.Cancel Reason}<>"OOS-Personnel"Then
If {Trips.Dispatch Time}="00:00:00" Then
Count ({Trips.Taken Date})
else
0;
Thanks,
This is a copy of some of what I've tried to no avail:
If {Trips.Initial Priority}<>"Code 10 - Standby / Spc. Event" Then
If {Trips.Initial Priority}<>"Code 99 - Out of Service" Then
If {Trips.Call Type}="ALS" Then
If {Trips.Call Type}="BLS" Then
If {Trips.Cancel Reason}<> "Communications Error"or {Trips.Cancel Reason}<>"Data Entry Error"
or {Trips.Cancel Reason}<>"OOS-Cleaning"or {Trips.Cancel Reason}<>"OOS-Detail"
or {Trips.Cancel Reason}<>"OOS-Equipment"or {Trips.Cancel Reason}<>"OOS-Mech. Critical Failure"
or {Trips.Cancel Reason}<>"OOS-Past Off Time"or{Trips.Cancel Reason}<>"OOS-Personnel"Then
If {Trips.Dispatch Time}="00:00:00" Then
Count ({Trips.Taken Date})
else
0;
Thanks,