Hi:
One thing you do not describe -- what kind of report will this be??? Do you want a DETAIL report -- (where every report row represents an observation in the data); or do you want a SUMMARY report, which might show the total COUNT for each name and the total rate or the average rate -- for this second type of report, if the COUNT variable was GE 2, you could then do the highlighting. Here's an example of a summary report (where the 14.7 is the sum of all the rates for steve -- this statistic could be the mean or median of steve's rates, too):
[pre]
name rate count
alana 10.12 1
karen 7.7 1
steve 14.7 3
[/pre]
If you want a DETAIL report, such as you show above, would you want to see the rows in name order -- where it would be immediately apparent that there were duplicates for STEVE or would you want the rows to be in the "original order" that they appear -- or DATE order???
ORIGINAL order:
[pre]
name rate date
steve 5.5 5/1/10
karen 7.7 10/09/10
steve 6.0 8/3/09
alana 10.12 5/4/10
steve 3.2 6/6/10
[/pre]
NAME order (without regard to date):
[pre]
name rate date
alana 10.12 5/4/10
karen 7.7 10/09/10
steve 5.5 5/1/10
steve 3.2 6/6/10
steve 6.0 8/3/09
[/pre]
DATE order (without regard to name):
[pre]
name rate date
steve 6.0 8/3/09
steve 5.5 5/1/10
alana 10.12 5/4/10
steve 3.2 6/6/10
karen 7.7 10/09/10
[/pre]
Do remember that the OBS number that PROC PRINT shows will change, depending on whether you sort the data by name or date or not. That's why I did not show OBS number on the above sample outputs...if you want to "save" the original observation order, you would need to do that when you read in the data.
Also, PROC PRINT is the only procedure that shows OBS number when you do a LIST report like this. If you want highlighting for an entire ROW, you will have to switch to PROC REPORT, which does not have any OBS column capability.
And, what is your destination of interest -- RTF, PDF, HTML????
cynthia