Hi @WarrenBelz thanks as always for the reply!
I have a SP list called "Servers List" containing information on many servers. Of the dozens of columns in this list, the ones of importance are ID_column and database_name.
From PowerApps, I simply want to combine or concat all the related values in the database_name column (related via the ID_column) into a single multiline Text box. This should allow a database engineer to simply copy this single text field for scripting related purposes. As opposed to opening each related record, and copying the info from each.
The approach I attempted was to create a collection of all the related servers, which works as well as the filter function but I'm thinking creating a collection is overkill, as the Filter function you supplied does the job just as well.
Here was my Collection attempt
ClearCollect(
colPAscript,
'Servers List',
{ID_column: ThisItem.ID}
)
This does indeed create a table with all the related records, but I want to combine all the Text values of the server_names column in the table, into a single multiline text box.
So as per the pic in my original post, I want to combine all the values in the database_name column into a single multiline text box, IF the ID_column is the same.