well if the built in functionality is not working, I would try:
in the section expert for the section desired (probably detail from the looks of it) in the suppress x-1 button:
Shared stringvar nameYear;
if {table.year}+{table.name} <> nameYear then (
nameYear := {table.year}+{table.name};
false;
)
else
true;
as a caveat, this will suppress the display, but if you are using an aggregate, like SUM(), the suppressed values will be in the total...you would need to set a Running Total (which is DBlank's forte) or create one using global/shared variables (which is what I would do)
HTH