Hi: You are asking for the MEAN statistic for your variable TARGET. That is the only statistic that PROC REPORT can give you at the break point on the report. If you want some other value, you will either have to 1) calculate it yourself and change the value within PROC REPORT 2) calculate it yourself outside of PROC REPORT and use a different variable for the summary inside of PROC REPORT 3) change the data before PROC REPORT, probably using FIRST. and/or LAST. logic to keep the first value for a group and then change to the SUM statistic. For example, if you changed your input data, temporarily, like this: NorthAmerica,Canada,100,1,10 NorthAmerica,Canada,0,2,120 NorthAmerica,Canada,0,3,75 NorthAmerica,USA,115,1,110 NorthAmerica,USA,0,2,20 NorthAmerica,USA,0,3,25 NorthAmerica,USA,0,4,15 NorthAmerica,USA,0,5,5 NorthAmerica,USA,0,6,5 NorthAmerica,USA,0,7,1 NorthAmerica,USA,0,8,7 NorthAmerica,USA,0,9,25 NorthAmerica,USA,0,10,65 Then the SUM statistic would work as you want when you do GROUPING and on the summary line for TARGET. If you remember, back in the first examples of this problem, you had two solutions -- one that used the MEAN (because your TARGET value was on every line) and one that used changed input data numbers and the SUM statistic. This is why you had those two different solutions -- due to the structure of your INPUT data and the way you represented TARGET in the input data. If you are getting a summary report (one row for every countryGroup/Country combination, then you do not need the TARGET number on every row. I don't quite understand the logic of why the values for NorthAmerica/USA changed from 100 to 10 to 5, while the values for CANADA stayed constant at 100 on each row. So there's probably more to understand about your data, but the bottom line is that PROC REPORT can only give you the statistic in the DEFINE statement automatically at a break. You can put another value in the cell using a COMPUTE block, but you have to know what the correct value is. cynthia
... View more