0

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

user3570022
  • 85
  • 1
  • 11

1 Answers1

1

You can use the Concat function to merge all the rows for a certain column, like in the example below:

Concat(<ExcelTableName>, Note, ", ")
carlosfigueira
  • 85,035
  • 14
  • 131
  • 171