define var v-client id like urTABLE.client-id.
define temp-table urTmpTable
field client-id like urTABLE.client-id
field start-date like urTABLE.start-date.
v-client = "".
for each urTABLE by client-id by start-date:
if v-client = urTABLE.client-id then next.
if v-client <> urTABLE.client-id then do:
v-client = urTABLE.client-id.
create urTmpTable.
urTmpTable.client-id = urTABLE.client-id.
urTmpTable.start-date = urTABLE.start-date.
end.
end.
for each urTmpTable:
display urTmpTable.
end.