I'm guessing you want to export your data. To get the data in separate rows, I think you would need to insert additional detail sections up to the maximum number of applications per person. Then create a series of formulas for the application like:
//{@Firstapp} to be placed in detail_a:
if ubound(split({table.applics},",")) >= 1 then
split({table.applics},",")[1]
Replace the comma with your separating character.
//{@Secondapp} to be placed in detail_b:
if ubound(split({table.applics},",")) >= 2 then
split({table.applics},",")[2]
//etc.
Then create corresponding formulas for the person field:
//{@person1} to be placed in detail_a:
if ubound(split({table.applics},",")) >= 1 then {table.person}
//{@person2} to be placed in detail_b:
if ubound(split({table.applics},",")) >= 2 then {table.person}
//etc.
Then format each detail section to "suppress blank section". If you are actually using a number for the person field, also be sure to format it to suppress if zero, so that the section will suppress appropriately.
-LB