Reputation: 81
new to Powerapp. I have a excel data source with 2 columns (Customer and Note). I want to display all the notes (regardless of customers) in a textbox. What is the simplest way to achieve this
Upvotes: 0
Views: 1423
Reputation: 87238
You can use the Concat function to merge all the rows for a certain column, like in the example below:
Concat(<ExcelTableName>, Note, ", ")
Upvotes: 1