Or you could insert a subreport using the Desc table, and create two formulas:
//{@lastname}:
mid(split({desc.field},",")[1],instr({desc.field},"-")+1)
//{@firstname}:
trim(split({desc.field},",")[2])
Then link the subreport to the main report by linking each of these formulas with its corresponding database field in the main report.
-LB