I have got a Dataverse table three of which fields I would like to join together and put the result in a Rich Text Editor through its default property. I tried to make a collection but the results are table which are not taken by a Rich text editor. The three columns of the table being like below
| Order |
Title
|
Description
|
| 1 |
This is title 1 |
This is Decription1 |
| 2 |
|
This is Decription2 |
| 3 |
|
his is Decription3 |
............. there are other fields and records in this table also
On the Default property of the Rich text editor I want to concatenate the columns so that it shows in rich text editor in the power apps application like below after sorting on Order (which is a whole number but user has to provide a value for each row in the selection.. All other fields are Text)
1. This is title 1 : This is Decription1
2. This is title 2 : This is Decription2
3. This is title 3 : This is Decription3
,.. and so on.
Tried SortColumns, AddColumns, Concatenate and Concat functions but somehow getting error,
Any solution is highly welcome,