Dears,
I am using a ForAll function but it returns the data as a table. How can i convert it into a single column
This is how the data is returned


All these tables only have one record.
I would like this collection to look like this
DrRDate | Drid | ID
5/3/2022 | 2 | 2
2/2/2022 | 1 | 1
This is the formula that i am using
ForAll(
col_Sample,
ForAll(
Split(
'Deficiency #',
Char(10)
),
Collect(
Test212,
{
ID: ID,
Drid: Result,
DrRDate: Last(
FirstN(
Split(
'DR Received Date',
Char(10)
)
)
)
}
)
)
);
Thanks