Hi @kevingeorget,
Could you please share a bit more about your scenario?
Do you want to populate the Multiline text field with values from the Person field of all records of your List B?
Or populate the Multiline text field with values from the Person field of one specific record of your List B?
If you want to populate the Multiline text field with values from the Person field of all records of your List B, I have made a test on my side, please take a try with the following workaround:

Set the OnVisible property of the Edit screen to following:
Clear(DisplayNameCollection);
ForAll(
ForAll('20190129_case13_ListB'.Applicant, Applicant.DisplayName).Value,
Collect(DisplayNameCollection, Value.DisplayName)
)
On your side, you should type:
Clear(DisplayNameCollection);
ForAll(
ForAll('YourListB'.Applicant, YourPersonColumn.DisplayName).Value,
Collect(DisplayNameCollection, Value.DisplayName)
)
Set the Mode property of the Text Input box within the Multiline text field Data card to following:
Multiline
Set the Default property of the Text Input box within the Multiline text field Data card to following:
Concat(DisplayNameCollection, DisplayName & Char(10))
If you populate the Multiline text field with values from the Person field of one specific record of your List B, I have made a test on my side, please take a try with the following formula:
Set the Mode property of the Text Input box within the Multiline text field Data card to following:
Multiline
Set the Default property of the Text Input box within the Multiline text field Data card to following:
Concat(
LookUp('20190129_case13_ListB', ID=1).Applicant,
DisplayName & Char(10)
)
On your side, you should type the following:
Concat(
LookUp('YourListB', ID = 1).YourPersonColumn, /* <-- Finf the specific record in your List B firstly, then get the corresponding Person column value */
DisplayName & Char(10)
)
Best regards,