Hi all,
I'm trying to clean up a power app before i roll out to be tested, but I'm a bit stuck on a BrowseGallery.
Currently data (Assets) shows up in whatever order it was added into the connected sharepoint list, but i'm trying to get it to show up in ascending order based off the "Barcode Number", while not breaking the ability to search for an asset via its Barcode Number.
Table: 'Asset Database'
Barcode: 'Barcode Number'
Currently running the search function
Filter('Asset Database', StartsWith('Barcode Number',TextSearchBox1.Text))
Solved! Go to Solution.
Hi @lachwise ,
Something like this should do it
Sort(
Filter(
'Asset Database',
StartsWith(
'Barcode Number',
TextSearchBox1.Text
)
),
'Barcode Number'
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Visit my blog Practical Power Apps
Hi @lachwise ,
Something like this should do it
Sort(
Filter(
'Asset Database',
StartsWith(
'Barcode Number',
TextSearchBox1.Text
)
),
'Barcode Number'
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Visit my blog Practical Power Apps
User | Count |
---|---|
257 | |
110 | |
97 | |
52 | |
39 |