Тёмный
No video :(

Wait! Solve Delegation Easily! In Power Apps Search 

Andrew Hess
Подписаться 8 тыс.
Просмотров 4,7 тыс.
50% 1

Опубликовано:

 

27 авг 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 31   
@andrewhess123
@andrewhess123 3 месяца назад
Hi All, if you just want to skip to the Power Automate to solve delegation it's at about 15:50 but there's a lot of tips in between. Also at about 27:40 we broke our "Edit" patch statement and fixed it with a lookup!
@imran002ali
@imran002ali 3 месяца назад
Hi Andrew, great video, as always; very informative and well explained. Appreciate your knowledge sharing. 👍👍
@andrewhess123
@andrewhess123 3 месяца назад
Thanks for still watching Imran! Appreciate your support! 👍
@imran002ali
@imran002ali 3 месяца назад
@@andrewhess123 , you are welcome. I have forwarded your contents to my peers and they loved your videos as well, looking forward to more great videos!! Appreciate it. :)
@andrewhess123
@andrewhess123 3 месяца назад
@@imran002ali Too kind!!!
@sergiocaballero1777
@sergiocaballero1777 3 месяца назад
Thank you, Andrew, for another great video! Would this work with any number of records? Or is this also limited to a max 5000 list items at a time via power automate?
@andrewhess123
@andrewhess123 3 месяца назад
Hi Sergio, through my testing I believe the limit is 100,000 although I have only tested up to 8000. If you increase your pagination and your topcount in your get items call it is well above 5000 items retrieved. It would be important to build your get items filter query in a way that you don't retrieve that many records, unless there is some specific reason in your requirements you must. If you wanted to retrieve large number of records I would probably use Power BI or then switch over to dataverse/sql/dataverse for teams.
@NeilMarjoram
@NeilMarjoram 3 месяца назад
Great video Andrew 👍🏻. Any ideas on how to do the same for multiline columns? The substringof fails when searching a multiline column
@andrewhess123
@andrewhess123 3 месяца назад
So with a multi-line column it's going to get way more complex, some ways to make it simple may be to just grab the first 250 words and put that in a variable? and then search.. other options I found this: tomriha.com/power-automate-filter-on-multiple-lines-of-text-sharepoint-column/ But it will be a lot more difficult with multi-line columns especially if enhanced rich text is on.
@NeilMarjoram
@NeilMarjoram 3 месяца назад
Thanks. The guide in that link worked great
@andrewhess123
@andrewhess123 3 месяца назад
@@NeilMarjoram Noice!
@NeilMarjoram
@NeilMarjoram 3 месяца назад
Andrew. Do you know if the attachment column can be parsed through the same process?
@syazniel_4779
@syazniel_4779 3 месяца назад
Will performance be affected if 10 people run it simultaneously, each searching for an item and triggering Power Automate to run 10 flows at once?
@andrewhess123
@andrewhess123 3 месяца назад
Performance will work better with premium licenses, with M365 plans you are at a lower profile, this is more of Power Automate and how you build out your flow. Your flow could be customized and take longer. You can see more about Power Automate performance here: learn.microsoft.com/en-us/power-automate/limits-and-config
@kennethgottfredsen767
@kennethgottfredsen767 24 дня назад
Hi Andrew, is it possible to reproduce this when the SP column is a number instead of text? I have a use case where a ID column has to stay as a number type.
@andrewhess123
@andrewhess123 24 дня назад
Hi Kenneth, should be possible with a number column. You can see the first column is {ID: Value(Value.ID)}, where the first Value() actually makes sure that the ID field is a number column.
@abdipowerappsguru1053
@abdipowerappsguru1053 2 месяца назад
Hi, this is good but relying on power automate it will count the flow runs and you may end up flow error that’s the downside of flow
@andrewhess123
@andrewhess123 2 месяца назад
Agreed, best to pay for SQL or Dataverse, but not everyone can.
@abdipowerappsguru1053
@abdipowerappsguru1053 2 месяца назад
Hi, myself Sharepoint person never used dataverse or sql, I filter multiple columns and starts with more than 50 thousand records that works well and no delegation. I hope Microsoft do better and let Sharepoint users to use search function, which I don’t see no reason why not allow. Apart than forcing people to buy other services. 😅
@HyoseungLee
@HyoseungLee 3 месяца назад
Thanks, it makes my code more readible. So far, I applied this way to solve deligation - added IDFilter, put same number with ID value, it makes my code more un-readable - whenever get data, using IDFilter column . Get max ID . calculate number, N by MOD(maxID, 2000) . collect data by Filter function N times => this makes my code terribly un-readable but I have question, which is better in performance view, collecting data N times or use power automate as you show me?
@andrewhess123
@andrewhess123 3 месяца назад
The Power Automate is pretty fast. I would have to do a comparison to let you know which is better... but my assumption is collecting data N times could be worse in performance. Especially if you have hundreds of thousands of rows. But this is a guess not verified.
@andrewhess123
@andrewhess123 3 месяца назад
Hyoseung, I would definitely try in a dev environment first before messing with anything in production.
@HyoseungLee
@HyoseungLee 3 месяца назад
@@andrewhess123 Thanks addrew... waiting for your feedback in happy
@walkingdadjokes6099
@walkingdadjokes6099 3 месяца назад
Thank you for this video. For some reason I was expecting the fix for delegation would have been to load all SharePoint list items in collections and combine them together. Search on title and customer name using substring in power automate is great. What about something more general to group many items of the same type with a filter (possibly multiple checkbox options?) like I would definitely see clients wanting to see Status == red or look at items for a specific category (or multiple?). Would it be the same? Also for SharePoint Choice columns...how? So basically, can a sort/filter options that is typically seen in lists be done in power apps with big lists (over 2k)? How about combining multiple lists?
@andrewhess123
@andrewhess123 3 месяца назад
Hi Walkingdadjokes! so... yes combining all sharepoint list items into collections per 2,000 could work, but if you have thousands of rows that may become an issue. I think Power Automate does a better job. You can build your filter query based on the requirements you don't have to use substringof(), you can do "less than", "greater than", startswith, and, or, not and many other functions inside your get filtery query. Choice columns can be solved with "eq" for equals. Once you go into multi-choice it most likely will be super complex and I would stay away from those options. You could probably break up a choice by "comma" delimeter and search within a string of that in a variable, but changing requirements of the customer may be a better option than giving yourself a headache. If you started combining multiple lists I would probably go to Power BI and do a JOIN instead of trying to view it in Power Apps. In my opinion Power Apps is a front end that is for data entry, if you want to view all your data in a specific way I would use Power BI for that.
@walkingdadjokes6099
@walkingdadjokes6099 3 месяца назад
@@andrewhess123 Thank you
@andrewhess123
@andrewhess123 3 месяца назад
@@walkingdadjokes6099 Thanks you too walkingdad! Hopefully the advice is helpful!
@kennethgottfredsen767
@kennethgottfredsen767 3 месяца назад
Does this work if the data source is Excel?
@andrewhess123
@andrewhess123 3 месяца назад
This is using a SharePoint Odata query REST call, I have not tried with Excel, there may be different limitations with Excel, but I do see filter Odata queries in Excel too. Maybe some limitations. powerusers.microsoft.com/t5/General-Power-Automate/examples-of-how-to-enter-a-filter-query-for-excel-list-row-in-a/td-p/326434
@kennethgottfredsen767
@kennethgottfredsen767 3 месяца назад
@@andrewhess123 thank you for the source recommendation Andrew. Love your videos.
@TomZero1489
@TomZero1489 2 месяца назад
Better use api graph
Далее
Creating an Edit Form and Fixing Defaults in Power Apps
25:51
ПОЁМ НАРОДНЫЕ ПЕСНИ🪗
2:04:11
Просмотров 1,1 млн
PowerApps Left Navigation Component
40:42
Просмотров 192 тыс.
Creating Search Boxes in Power Apps
12:09
Просмотров 149 тыс.
Named Formulas & User Defined Functions in Power Apps
13:41