Focal Point
error in generation of graph.

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/9101028331

December 16, 2004, 10:55 AM
<KPBHATT>
error in generation of graph.
Hi ,

We have the following code base to calculate row percentage (error %)values across a year week parameter.

However we are not able to generate the graph based on the row % values . Heres the codebase:

TABLE FILE account
SUM
'CNT.item.item_id'
AS 'itemcount,item.item_id'
ACROSS
'account.Yr_Wk' AS ' '
FOR
item.itemtext
'No of Item with Errors' AS 'No of Item with Errors' LABEL R1 OVER
'Items with out Error' AS 'Items with out Error' LABEL R2 NOPRINT OVER
RECAP TOTALSKU=R1 + R2 ;
AS 'No of item launched' OVER
RECAP ERRORPCT=R1/R3*100;
AS 'Error%'
END

any pointers to where we are missing the boat????