user3570022
user3570022

Reputation: 81

Power app display all rows of a column in textbox

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

Answers (1)

carlosfigueira
carlosfigueira

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

Related Questions