I have an app that I want to convert a list from a SharePoint site for a column value into something that looks like list form in PowerApps.
I have the split down no problem. I want to format the data table below so that those item numbers show as separate rows. How do I do this?
Solved! Go to Solution.
hi there @mtwining1
if i get your requirement right, are you looking for something like this?
In your case it will be
Hope this helps
R
Split will return a table of split results. That table can be used as the Items property of any control that has an Items property. So your Items property of the datatable should be the formula you show.
But, you are dealing with HTML text when you get the HtmlText from a rich text editor. So assuming that spaces are what delimit your text is not guaranteed.
I would change the formula to the following:
Split(PlainText(DataCardValue35.HtmlText), " ")
You don't need to trail this with a .Result as the function already returns a table with only a Result column.
I hope this is helpful for you.
hi there @mtwining1
if i get your requirement right, are you looking for something like this?
In your case it will be
Hope this helps
R
The results I am getting is no issue, the problem I have is how it's displayed. Instead of showing each item left to right, I want it to display from up to down.
Now Sample:
1087565 1087569 1087570 etc...
Desired Outcome:
1087565
1087569
1087570
etc..
Prefect and yes this was the desired outcome....granted I will make this look nicer, but have the functionality down now. Thanks.
A Gallery is fine (and preferred), but the Datatable would have worked fine too.
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
This training provides practical hands-on experience in creating Power Apps solutions in a full-day of instructor-led App creation workshop.
User | Count |
---|---|
180 | |
52 | |
41 | |
38 | |
28 |
User | Count |
---|---|
255 | |
81 | |
71 | |
68 | |
66 |