fisheromacse
IS-IT--Management
I attempting to retrieve data from support v outcome surveys and chart them but must be missing something, so, any assistance would be greatly appreciated.
Below is a lengthy description of the errant or hopefully relevant information. If there is any other information that may be of use, please ask.
I have a report with several groups.
Group Header 1.Wide Area,
Group Header 2.Local Area,
Group Header 3.Block,
Group Header 4.Building,
Group Header 5.Floor,
Details Secton
there should always be 26 records per wing, 4 of them should always be "Personal Info" and are of no interest. I cannot filter these records out in the Select statement as the information is needed for display in the report, but not for these calculations. However, I would like the report to be accurate even if items on the evals are skipped.
I have no problem showing the sum of {@Outcomes} on a chart using this (formulas below):
Chart Info:
Chart Type: Bar
Data: On Change Of: {@ItemName}
Show Value: Sum of {@Outcomes}
But, I need to determine and graph the % of outcomes met ({@Outcomes}=1) for each of the 22 relevant items for display in the Report Footer.
I have all the values I need in Group Footer sections, but am stuck graphing them.
I evaluate a detail record using this formula:
//{@Outcomes}
if isnull({Table1.ItmA}) or trim({Table1.ItmA})="" or {Table1.CatName}="Personal Info"
then 0
else
IF {MCLdetail.ItmA} = "Y" then 1
else 0
The percentage:
//{@OutcomesPCT}
(Sum ({@Outcomes}, {Table1.WideArea})/{#RT_Q)*100
The running total:
//{#RT_Q}
Field to Summarize: {Table1.DTS}
Type of Summary: Distinct Count
Evaluate: Use a Formula: {Table1.CatName}<>"Personal Info"
Reset: On Change of Group 1 Wide Area
//{@ItemName}
IF {Table1.CatName}="Personal Info"
then ""
else {Table1.ItemName}
Below is a lengthy description of the errant or hopefully relevant information. If there is any other information that may be of use, please ask.
I have a report with several groups.
Group Header 1.Wide Area,
Group Header 2.Local Area,
Group Header 3.Block,
Group Header 4.Building,
Group Header 5.Floor,
Details Secton
there should always be 26 records per wing, 4 of them should always be "Personal Info" and are of no interest. I cannot filter these records out in the Select statement as the information is needed for display in the report, but not for these calculations. However, I would like the report to be accurate even if items on the evals are skipped.
I have no problem showing the sum of {@Outcomes} on a chart using this (formulas below):
Chart Info:
Chart Type: Bar
Data: On Change Of: {@ItemName}
Show Value: Sum of {@Outcomes}
But, I need to determine and graph the % of outcomes met ({@Outcomes}=1) for each of the 22 relevant items for display in the Report Footer.
I have all the values I need in Group Footer sections, but am stuck graphing them.
I evaluate a detail record using this formula:
//{@Outcomes}
if isnull({Table1.ItmA}) or trim({Table1.ItmA})="" or {Table1.CatName}="Personal Info"
then 0
else
IF {MCLdetail.ItmA} = "Y" then 1
else 0
The percentage:
//{@OutcomesPCT}
(Sum ({@Outcomes}, {Table1.WideArea})/{#RT_Q)*100
The running total:
//{#RT_Q}
Field to Summarize: {Table1.DTS}
Type of Summary: Distinct Count
Evaluate: Use a Formula: {Table1.CatName}<>"Personal Info"
Reset: On Change of Group 1 Wide Area
//{@ItemName}
IF {Table1.CatName}="Personal Info"
then ""
else {Table1.ItemName}