junction123
MIS
I have a report that needs to aggregate two columns based on every quarter.
The report final output has the foll fields And for categorizing based on All, Historic and New we have the
ExecuteToCoverDiff and ResponseCount for all three categories.
TradeMonthName
TradeYear
ExecuteToCoverDiff
ResponseCount
ExecuteToCoverDiff
ResponseCount
ExecuteToCoverDiff
ResponseCount
TradeMonth
What is wrong in my formula to return 0? I grouped by ResponseCount and have the aggregated field in the group.
IF {rptAvgSpreadToCoverRatio.TradeMonth} = 'January'
AND {rptAvgSpreadToCoverRatio.TradeMonth} = 'February'
AND {rptAvgSpreadToCoverRatio.TradeMonth} = 'March'
THEN Average({rptAvgSpreadToCoverRatio.ExecuteToCoverDiff})
I have months from January...December.
The fields in question are ExecuteToCoverDiff and ResponseCount and the report output should appear as
Cover ResponseCount
January 25.92 3.86
February 24.39 3.76
March 25.21 3.77
2009 Q1 25.16 3.80
April 19.27 3.88
May 18.26 3.94
June 13.87 4.10
2009 Q2 16.78 3.99
thanks in advance for your help
The report final output has the foll fields And for categorizing based on All, Historic and New we have the
ExecuteToCoverDiff and ResponseCount for all three categories.
TradeMonthName
TradeYear
ExecuteToCoverDiff
ResponseCount
ExecuteToCoverDiff
ResponseCount
ExecuteToCoverDiff
ResponseCount
TradeMonth
What is wrong in my formula to return 0? I grouped by ResponseCount and have the aggregated field in the group.
IF {rptAvgSpreadToCoverRatio.TradeMonth} = 'January'
AND {rptAvgSpreadToCoverRatio.TradeMonth} = 'February'
AND {rptAvgSpreadToCoverRatio.TradeMonth} = 'March'
THEN Average({rptAvgSpreadToCoverRatio.ExecuteToCoverDiff})
I have months from January...December.
The fields in question are ExecuteToCoverDiff and ResponseCount and the report output should appear as
Cover ResponseCount
January 25.92 3.86
February 24.39 3.76
March 25.21 3.77
2009 Q1 25.16 3.80
April 19.27 3.88
May 18.26 3.94
June 13.87 4.10
2009 Q2 16.78 3.99
thanks in advance for your help