Тёмный

How to Select MULTIPLE Items in Power Apps Gallery & PATCH 

Reza Dorrani
Подписаться 138 тыс.
Просмотров 48 тыс.
50% 1

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

 

14 окт 2024

Поделиться:

Ссылка:

Скачать:

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

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 238   
@sankhlayashraj
@sankhlayashraj 8 месяцев назад
You are a mind reader. The app that I just made… I had a request where if we can do bulk updates and now you have come up with this. I think your copilot is doing a lot of mind reading. Respect @Reza
@RezaDorrani
@RezaDorrani 8 месяцев назад
I spend hours deciding which video topic to select. There is some madness to it :)
@turisabela
@turisabela 20 часов назад
Reza, your videos are always on spot!
@RezaDorrani
@RezaDorrani 20 часов назад
Thanks so much
@piusokoh4267
@piusokoh4267 2 месяца назад
Hi Reza..I am blown away by the simplicity of your approach to something that took me months scrubbing the internet to get a hang of. I greatly appreciate this video and also commend you for dedicating your time and effort to do this.. Thank you so much..
@RezaDorrani
@RezaDorrani 2 месяца назад
Thanks so much for your kind words. So happy to hear the feedback.
@edtt1760
@edtt1760 4 месяца назад
Forgive me for what I'm about to say but I love you, you really solved a question a was trying to find the answer for a long while, normally your videos sound kind of complex for me but This time I got everything from the beginning till the end, thanks so much you are a master!!!
@RezaDorrani
@RezaDorrani 4 месяца назад
Thanks for all the ❤️
@krishnankuppaswamy7553
@krishnankuppaswamy7553 2 дня назад
Learnt how to view the variable value. Thanks ❤
@RezaDorrani
@RezaDorrani 2 дня назад
You are welcome!
@alvarolang
@alvarolang 6 месяцев назад
Great video Reza. Congrats once more! 👏👏 Thanks for the lessons!
@RezaDorrani
@RezaDorrani 6 месяцев назад
Thank you!
@imran002ali
@imran002ali 8 месяцев назад
Hi Reza, I am totally speechless, I ran out the words, this is just MARVELOUS!! Thank you!! 🌟🌟🌟🌟🌟
@RezaDorrani
@RezaDorrani 8 месяцев назад
Wow, thank you!
@imran002ali
@imran002ali 8 месяцев назад
@@RezaDorrani You are welcome!!
@michaelcollett7284
@michaelcollett7284 7 месяцев назад
Very useful video. Thank you! This is amazing!
@RezaDorrani
@RezaDorrani 7 месяцев назад
You're very welcome!
@Test-yh6ke
@Test-yh6ke 8 месяцев назад
You are the best Reza! Learnt a lot from your videos. Thank you ❤
@RezaDorrani
@RezaDorrani 8 месяцев назад
Thanks so much
@titoleto
@titoleto 8 месяцев назад
Hi @RezaDorrani, First of all, forgive me for making this comment. I follow you regularly and I love your videos but there is something I would like to correct, with the code you have put in the Update. The most optimal way would be with this code: Patch( 'Issue Tracking List', ShowColumns( colData, "ID", "Status", "Priority" ) ); because the way you are doing it, it is updating all the columns in the list and the most effective way is to update only the two columns you are updating.
@martinsteiger7857
@martinsteiger7857 8 месяцев назад
That's exactly what I thought when I saw the PATCH call. But apart from that still a great video (I learnt again something new). Thank you, Reza. ❤
@RezaDorrani
@RezaDorrani 8 месяцев назад
Thats a great point and Im very happy to see it being made. In another video I did show showcolumns while Patching and a lot of viewers got confused (using different data sources + importance of having primary key in there) Hence to make it simple, I decided not to do that here 😉
@wallshider
@wallshider 8 месяцев назад
Hi! This works like a gem! But im worried, will this work on large dataset without hidden issues? Like how the patch function knows what record to update? Because of the “ID” column? Thanks!
@RezaDorrani
@RezaDorrani 8 месяцев назад
@@wallshider Yes, it knows because of ID column. If worried, best to test it out first.
@pathimohanadurgasai7816
@pathimohanadurgasai7816 6 месяцев назад
Superb 🎉🎉🎉.. Worked perfectly for me. Thank you.
@nishitanathani1052
@nishitanathani1052 5 месяцев назад
Hi Reza Dorrani, Everyday at work I am so grateful for your videos to be able to learn a lot of Microsoft Power Platform concepts with so much ease. You are the best! Have a great day!
@RezaDorrani
@RezaDorrani 5 месяцев назад
I have not come across this issue hence not sure. Some folks did report it but later mentioned it worked fine on its own.
@scottthompson4513
@scottthompson4513 5 месяцев назад
You are my hero...thank you.. I understand ALL of these programming ideas, but knowing where and how to do it within PA is my pain point
@mojpage
@mojpage 7 месяцев назад
Love this video Reza. Wil this work if my gallery is using a Startswith filter for the items property? It's a large data set, so we use drop downs to filter it to return all the data from 2000+. Will the update still work?
@RezaDorrani
@RezaDorrani 7 месяцев назад
Do you want user bulk updating 2000+ records in one go? It will work but user will have to scroll in gallery so gallery loads all that data assuming the query is delegable.
@nico_ruge
@nico_ruge 8 месяцев назад
YES, I am about to launch a power app in our production facility and needed THIS special functionality, Thanks!! Is there a way to check all items that has a special value in a Column? For example, select all items that have "January" in the "Month" Column?
@jq1683
@jq1683 8 месяцев назад
Yes . Clearcollect(filter(data source,month field = January)) Just need to add a filter instead of clear collecting entire list
@RezaDorrani
@RezaDorrani 8 месяцев назад
Most welcome!
@nico_ruge
@nico_ruge 8 месяцев назад
@@jq1683 thanks!
@moeking5601
@moeking5601 8 месяцев назад
Just in time great video 👍👍, the only issue I'm having with this method is when I change the same drop-down twice it gives a network patch error this is because my collect is set on the drop-down Onchange property is there a workaround?
@RezaDorrani
@RezaDorrani 8 месяцев назад
It depends on how you have configured it. I have not come across the mentioned issue and hence not sure what the cause could be. I recommend posting your issue on forums in case someone has experienced something similar powerusers.microsoft.com
@edtt1760
@edtt1760 3 месяца назад
I saw your video once again and I was wondering why you did not user for all patch? Is there any situation where udpateif is more convenient than forall patch? Thanks again man, you are a lifesaver!
@RezaDorrani
@RezaDorrani 3 месяца назад
ForAll Patch is slower compared to Patch collection.
@edtt1760
@edtt1760 3 месяца назад
@@RezaDorrani Thanks a lot Reza I really appreciate your guidance!
@shankgurew2370
@shankgurew2370 6 месяцев назад
The Best By far; what do we do without you ma men
@RezaDorrani
@RezaDorrani 6 месяцев назад
It goes both ways. My motivation is my audience.
@aliasadi8058
@aliasadi8058 7 месяцев назад
Hi Reza! thanks for the great videos. Do you have a video for patching nested galleries with check boxes in each item to patch selected items? For instance say I have a parent gallery that Items are 1, 2, 3, 4, ... and each Item has its own items that I have created using group by function. I want to patch all the selected items and repeat parent gallery items in the first column for all the selected items in the child gallery. Thank you!
@RezaDorrani
@RezaDorrani 7 месяцев назад
Welcome! I do not have a video on that scenario.
@Bieglin_Switzerland
@Bieglin_Switzerland 4 месяца назад
Hi Reza. This video solved a lot of my "problems". Great work and thank you.
@RezaDorrani
@RezaDorrani 4 месяца назад
You’re most welcome
@rarun0080
@rarun0080 8 месяцев назад
Great Video Reza! very useful. I am looking to complish similar one using Comb box multiselect and trying to update the values at backend(dataverse). The columns I am trying to update are lookup columns. If you have done similar work around this requirement can you share the link to your video. Thank you so much.
@RezaDorrani
@RezaDorrani 8 месяцев назад
Thanks! I dont think I have a specific video reference on this. I will recommend checking on the forums at powerusers.microsoft.com/ in case someone has done something similar.
@fredfarrell
@fredfarrell 6 месяцев назад
Hi, did you have any success patching lookup column data? I put the lookupcolumn values into a collection and then tried using showcolumns in the patch to specify those, it doesn't like non record values though.
@noobaimgamer7376
@noobaimgamer7376 8 месяцев назад
Hello @RezaDorrani! I used your method here and it works perfectly fine. But, when I checked the select all check box on a filtered gallery, it still selects all items. For example, I have 30 total items in the gallery and when I filtered it, gallery will show 15 items. When I ticked the select all check box on a filtered gallery, it will still select all 30 items. Is there a work around on this? Thank you for making this content as it really helps the beginners like me in creating apps. 😊
@RezaDorrani
@RezaDorrani 8 месяцев назад
As shown in video, it works on filtered items as well. Link to download sample app is available for channel members (check description for details)
@noobaimgamer7376
@noobaimgamer7376 8 месяцев назад
Thank you Reza, you are a legend 😊
@kiruthikas3275
@kiruthikas3275 27 дней назад
Thank you so much Reza. It is very very very helpful for me.
@RezaDorrani
@RezaDorrani 27 дней назад
You are most welcome
@EMiller500
@EMiller500 8 месяцев назад
Thank you so much, for this, Reza! So just to confirm: If I have a filter on my gallery ITEMS, and I click "Select all," it will select only those gallery items that are filtered, is that correct?
@RezaDorrani
@RezaDorrani 8 месяцев назад
Yes, as long as check all has the same filter condition when collecting data in collection. Note collection max limit* is max delegation limit which is 2000
@Letstry17
@Letstry17 2 месяца назад
Hi Reza, First of all I would like to thank you for the quality content you are providing..in this video I have a question at 6:37 while selecting all items..I have a gallery with filter I only want to select all items after filtering which in my case I don’t know how to do..is it even possible ..as in your video it is selecting all the available items from gallery…please help in this topic.
@RezaDorrani
@RezaDorrani 2 месяца назад
You're most welcome! If gallery is being filtered, then we adding all items to collection, you should be applying that same filter logic. Possible - Yes. Something I have tried - No
@Letstry17
@Letstry17 2 месяца назад
@@RezaDorranithank you so much it’s working without any delegation warning..
@ion669
@ion669 7 месяцев назад
You are simply a magician! thank you for the great guide. I was wondering if is possible to have a dropdown for each item in a gallery with different values and be able to patch the different values from that dropdown for each item respectively. I tried it with a ForAll since my gallery would get just a few cases at once each time but it doesnt work, it patches the same value as the selected item on the gallery for all the items no matter what. I thought maybe I could clearcollect at each ForAll iteration but that is also not possible. Anyway, thanks again for the video.
@RezaDorrani
@RezaDorrani 7 месяцев назад
Thanks! Your scenario is more like a grid style of gallery. I have done 4-5 videos on that. Check playlist on grids on my channel.
@ion669
@ion669 7 месяцев назад
Thank you! I solved it watching the guide one about editable grid using modern controls.
@john1537
@john1537 8 месяцев назад
I like your videos about power apps , in relation with this one I have a question , how to approach the scenario when from those two columns I want to update only one , let's say status and priority to leave as it is already for each individual record?
@RezaDorrani
@RezaDorrani 8 месяцев назад
Remove that column from collection that you do not want to patch prior to making the patch call
@john1537
@john1537 8 месяцев назад
so will be a case of IF and isempty or isblank of the fields that you make available to determine which ones to patch @RezaDorrani ?
@RezaDorrani
@RezaDorrani 8 месяцев назад
@@john1537 yes
@rohansharma1828
@rohansharma1828 7 месяцев назад
Reza was there a reason behind you choosing the classic checkbox over the modern one?
@RezaDorrani
@RezaDorrani 7 месяцев назад
Yes, to mix things up. Modern checkboz was in preview at time of making the video.
@SolveQuizNow
@SolveQuizNow 5 месяцев назад
Thank you for this video❤. Waiting for a video on PAD new features.
@RezaDorrani
@RezaDorrani 5 месяцев назад
I have no plans for PAD videos as I do not work on that.
@TheKermit2110
@TheKermit2110 3 месяца назад
this is sooooooooooooooo good! Thanks Reza!
@RezaDorrani
@RezaDorrani 3 месяца назад
Most welcome
@Letstry17
@Letstry17 Месяц назад
Hi @reza first of all thank you so much for providing videos on exact requirements I used this video to and applied same functionality to my canvas power app it worked for few days and now all of a sudden i am starting getting error-Network error when using patch function: conflict exist with changes on server, please reload. Requesting you to help me overcome this issue
@RezaDorrani
@RezaDorrani Месяц назад
Most welcome! I have not experienced the mentioned issue, hence not sure. I will recommend posting your issue on forums at powerusers.microsoft.com/
@Letstry17
@Letstry17 Месяц назад
@@RezaDorranithanks for your swift response I even posted this on community but couldn’t find a solution described as easy as you shown.. now I am in a tough situation ..by your expertise what could be a possible reason for this error…by the way I am using dataverse table as my data source
@RezaDorrani
@RezaDorrani Месяц назад
@@Letstry17 I would have to reproduce your issue to know what can be done. Forums will be your best bet.
@TylerMeverden
@TylerMeverden 6 месяцев назад
Thanks so much for your tutorials, Reza! I am applying the Patch function described at the 14:45 minute mark to a SharePoint List. However, I am applying it to a gallery populated by a GroupBy variable. It would seem that items cannot be updated within a GroupBy context. So, I must use ClearCollect to take the selected items and place them in another table..? Does that sound correct? Thanks so much for you time!
@RezaDorrani
@RezaDorrani 6 месяцев назад
Welcome! Group By has a different schema for gallery. I don’t have a specific video on this so not sure what the code would look like. I recommend posting your query on forums in case someone has experienced something similar powerusers.microsoft.com
@TylerMeverden
@TylerMeverden 6 месяцев назад
Thanks for your reply! @@RezaDorrani Yes, there is a post on the forum similar to my issue, but I am having trouble formatting. I may just create a new post. Interestingly, my app will allow the Patch formula as it is described in the video to make a SharePoint List update, but only once. After that submission an error message is produced.
@RezaDorrani
@RezaDorrani 6 месяцев назад
@@TylerMeverden Sounds weird. Something would surely not be right. Try put a new post.
@pisitboonsong
@pisitboonsong Месяц назад
Hello, Your this video is help full. I have question if I don't used check box but I used some colunm that duplicate word example your colunm is "Prioirty" when I update data that I selected row "High" want to change colunm "Status" to be "open" all row "High" in the gallery May you advice? How to do that? Thank you.
@RezaDorrani
@RezaDorrani Месяц назад
I have done another video on bulk updates. I would recommend checking that one.
@pisitboonsong
@pisitboonsong Месяц назад
@@RezaDorrani thank you for recomment and I saw video on bulk update but not my intension , I mean I have data for example delivery data have Part Number , PO the part number is same but the PO is difference (1 Part number have average 5 PO in data table) and I need to inspection part 1 part number when I record data 1 part number the result record pass all 5 PO without checking box. ---> example 1 day I have around 100 Part Number 500 PO My data base in Excel table. For this video I try to follow your method but I have struck update button that show error "colunm in the data source you're updating expect a 'text' type and you're using a 'Record' type Sorry to bother you. I have a new creator please give me more advice. Thank you
@RezaDorrani
@RezaDorrani Месяц назад
@@pisitboonsong I would have to try it out to know the options. The videos are the best references I have. I will recommend checking or posting your query on forums in case someone has done something similar powerusers.microsoft.com
@NatashaGondiProfessional
@NatashaGondiProfessional Месяц назад
Hi Reza, I searched in all your videos and also checked PowerApps Platform community, There is not proper video on Combobox with multiselect functionality connected to SharePoint Choice column inside the Gallery. to retrieve it's stored values in the Gallery etc. Plssss make one, Plss because your videos are so simple to follow. It will help many! Thanks a ton! If you already made, pls send here, I couldn't find.
@RezaDorrani
@RezaDorrani Месяц назад
I have not made one on that scenario. I make videos when I receive multiple requests on a topic. Every 6 months I ask subscribers for topic suggestions on Community Tab of my channel. Most voted topic ideas get added to my backlog. Make sure to suggest this idea whenever the next topic suggestion post is out.
@komalahmeds6740
@komalahmeds6740 5 месяцев назад
Hi, this was really helpful. Do you have a video available showing how to update People column when applying changes to multiple records? I want to show the requestor name/e-mail next to each record.
@RezaDorrani
@RezaDorrani 5 месяцев назад
I don’t remember doing one on this scenario
@komalahmeds6740
@komalahmeds6740 5 месяцев назад
@@RezaDorrani Hello Reza, thank you for responding. Is this something you might be interested in creating a video on, or have a workaround you could propose?
@RezaDorrani
@RezaDorrani 5 месяцев назад
@@komalahmeds6740 I make videos when I receive multiple requests on a topic. Every 6 months I ask subscribers for topic suggestions on Community Tab of my channel. Most voted topic ideas get added to my backlog. Make sure to suggest this idea whenever the next topic suggestion post is out.
@vengkateshr7290
@vengkateshr7290 8 месяцев назад
Hi Sir..Thank you for the video i found it more interesting so that i can use it in my work…I have one question as i am building a car booking application where users select the date and time using date time picker Power apps has to list down the list of available cars on the specific mentioned time..I couldn’t achieve this any suggestions please
@RezaDorrani
@RezaDorrani 8 месяцев назад
Depends on how schema of your data. Idea would be to filter data. I have done many videos on filtering that you can check.
@zerocool200380
@zerocool200380 8 месяцев назад
Reza, Thank you for such a powerful tutorial.
@АртемБатьков-м6ю
@АртемБатьков-м6ю 8 месяцев назад
Reza, thank you a lot for your videos and contribution in the Microsoft forum! I would like to ask a question if you don't mind. When I released my app, I noticed there is no multiple photo selection through the attachment control. That means I can't select some photos once at time when upload them. The issue is only on Android and iOS platforms through the PowerApp mobile app. But, It works fine on the web browser for any platform. Researched and found nothing. Any solutions so far? Thank you
@RezaDorrani
@RezaDorrani 8 месяцев назад
I don’t think there is any out of the box feature for that. It is a known limitation.
@АртемБатьков-м6ю
@АртемБатьков-м6ю 8 месяцев назад
@@RezaDorrani oh, thank you
@AshishYadav-yr6xh
@AshishYadav-yr6xh 5 месяцев назад
Hi Reza Thanks for this video... I used the Patch function as shared in this video and the App was working fine from last 2 weeks, but today i get the error "Network error when using the Patch function: The specified column is read-only and can't be modified." now I am unable to resolve this error. Could you provide a hint to resolve this ?
@RezaDorrani
@RezaDorrani 5 месяцев назад
I have not come across this issue and hence not sure what is the cause for your issue. I recommend posting your issue/query with screenshots on the forums at powerusers.microsoft.com
@meshmut
@meshmut 4 месяца назад
Hello Buddy, got a solution on this? is so please share I'm as well stuck and will much appreciate @Ashish
@marceloescobar1921
@marceloescobar1921 3 месяца назад
Smart solution ! thanks!
@RezaDorrani
@RezaDorrani 3 месяца назад
You're welcome!
@atehaa
@atehaa 8 месяцев назад
Thank Reza, another great content!
@ramitkishoresaha9437
@ramitkishoresaha9437 8 месяцев назад
Updating 500 items were very fast. I did not expect that! ❤
@RezaDorrani
@RezaDorrani 8 месяцев назад
🚀
@SmartLearningAI
@SmartLearningAI 6 месяцев назад
Can you show how to overcome the delegation limit beyond 2000? ie do batches of 2000 until end of file or something?@@RezaDorrani
@Sam-pi3fx
@Sam-pi3fx Месяц назад
Hi Reza, thanks for uploading this video. My gallery has collection as datasource which I'm creating at onstart property as we've more than 2000 rows. Added the same code as yours in OnSelect property of my button, but the value is not getting updated in my sharepoint list. Could you please help?
@RezaDorrani
@RezaDorrani Месяц назад
I have not tried with collection logic. I will recommend checking or posting your query on forums in case someone has done something similar powerusers.microsoft.com
@tylerkolota
@tylerkolota 8 месяцев назад
I literally just had to build this last week while developing an app. But I for some reason did it a little different using an IsSelected column in the separate collection instead of just adding & removing from it. But if I go back & better match this set up, I can link to this video & avoid doing documentation for that part of the app.
@RezaDorrani
@RezaDorrani 8 месяцев назад
Good luck!
@tylerkolota
@tylerkolota 8 месяцев назад
@@RezaDorrani Already got it set up. Better to gather around standardized methods so things seem more familiar to anyone going into our apps later. Thanks Reza
@spen2431
@spen2431 2 месяца назад
Just come back to this... Question. Can you do something similar with a combo box but using submit form? ie if you select 3 items from a combo box, you get 3 items added to your SharePoint list? 🤔
@RezaDorrani
@RezaDorrani 2 месяца назад
Probably possible but not something I have tried or plan to do so.
@prabhakardhere5316
@prabhakardhere5316 Месяц назад
Hi @Reza. Thanks for this video. But while adding check all check box updateif function is not updating collection values. Any reason.
@RezaDorrani
@RezaDorrani Месяц назад
Video description has link to download entire solution (members only - check description for details) I would suggest giving that a try. As for the issue mentioned, I have not experienced it and hence not sure what the cause for it could be. I will recommend posting your issue on forums in case someone has experienced something similar powerusers.microsoft.com
@zerocool200380
@zerocool200380 7 месяцев назад
Hi Reza, I implemented the solution you outlined in this video. I also used one of your techniques to copy items in bulk. I have one issue, though. Once the gallery refreshes its items, then I can't clear the collection, and the checkboxes are all checked. I can't figure out how to stop the loop as I quite like the concept of informing the user that a change requires saving and, therefore, triggering the patch on selection of the controls inside the gallery. Any suggestion?
@RezaDorrani
@RezaDorrani 7 месяцев назад
I have not run into any issues with gallery refreshing so Im not sure how I can help.
@oluwatobiyusuf
@oluwatobiyusuf 6 месяцев назад
Very useful video. Thank you Reza
@RezaDorrani
@RezaDorrani 6 месяцев назад
Glad to hear that
@sibasankar8587
@sibasankar8587 3 месяца назад
Thanks for the informative video
@RezaDorrani
@RezaDorrani 3 месяца назад
Most welcome
@cristinaR2
@cristinaR2 6 месяцев назад
Great content! Learned a lot from you :)
@RezaDorrani
@RezaDorrani 6 месяцев назад
Awesome, thank you!
@bernardoemerick5362
@bernardoemerick5362 Месяц назад
Hi, @RezaDorrani! I'm at a very begginer level on 365. I wonder if I could use this same reasoning to execute some other actions, besides altering the list. Specifically, I want an email do be sent to each of the selected items. Can it be done in the same way or do I need to execute some loop using Automate?
@RezaDorrani
@RezaDorrani Месяц назад
Emails would be sent using a loop. You can do that directly from PApps.
@jaredt.4048
@jaredt.4048 8 месяцев назад
Reza, have you considered making a video on how to select favorites in a gallery and then filter the gallery by favorites only (Sharepoint list)? This would be very helpful for my facilities directly app! Thank you for the consideration.
@RezaDorrani
@RezaDorrani 8 месяцев назад
I have not. My rule for video requests is set - "I make videos when I receive multiple requests on a topic. Every 6 months I ask subscribers for topic suggestions on Community Tab of my channel. Most voted topic ideas get added to my backlog. Make sure to suggest this idea whenever the next topic suggestion post is out."
@arwaalgabas8641
@arwaalgabas8641 5 месяцев назад
Thank you so much, I have faced a problem because my gallery uses filter dropdown. and when i change the value of the filter the checkboxes are reseting again. how to stop the checkboxes from reseting? thank you again
@RezaDorrani
@RezaDorrani 5 месяцев назад
Not sure about it. I will recommend posting your issue on forums in case someone has experienced something similar powerusers.microsoft.com
@arwaalgabas8641
@arwaalgabas8641 5 месяцев назад
@@RezaDorrani Thank you, I figured out the problem, because the check boxes has no reference in my collection or list. so their values are not stored anywhere.
@pjcruz7635
@pjcruz7635 8 месяцев назад
Thanks! Veryhelpfull!!
@RezaDorrani
@RezaDorrani 8 месяцев назад
Most welcome
@JohnstonWang
@JohnstonWang 7 месяцев назад
Hi Reza, do you do 1 to 1 consultation to build a site inspection mobile app. they will be around 100 questions and each qns will have a Yes, No field, a comments box and a camera upload.. thank you
@RezaDorrani
@RezaDorrani 7 месяцев назад
I do not provide 1:1 consultation
@kamranpatel2998
@kamranpatel2998 8 месяцев назад
thanks raza for bringing awesome content very helpful
@RezaDorrani
@RezaDorrani 8 месяцев назад
My pleasure!
@praveeng3921
@praveeng3921 8 месяцев назад
Always as Interesting video, Thank you for this.
@RezaDorrani
@RezaDorrani 8 месяцев назад
Glad you enjoyed it
@kellyliu4225
@kellyliu4225 7 месяцев назад
Very helpful video, thanks very much! I wonder if you can make a video about patch function returns value especially returning table value. I use Dataverse table as data sources, in one situation that I want to copy from records from the same table. That means inserting new records with new unique identifier and few columns value changed from existing records. And I need each patch returned value (new record) that will be used to create new records for sub tables…
@RezaDorrani
@RezaDorrani 7 месяцев назад
I do not have a video reference on this scenario and would have to try it out to provide guidance. I recommend checking on the forums at powerusers.microsoft.com/ in case someone has done something similar.
@kellyliu4225
@kellyliu4225 7 месяцев назад
Hi Reza, that would be great if you can make a video or guide for the scenario! It similar to your this video but add another complexity, instead of updating it is inserting or create new records. I don’t see it can be done with bulk patch? I have to use ForAll then Patch which is working fine. The difficulty things are that I need the returned records from Patch one by one…ex: I have two galleries GalleryFrom and GalleryTo their Items are same collection, the collection is ClearCollect from a Dataverse table. A ComboBox for dropdown (custom page) bind to one field of collection (categories) to control the GalleryFrom display list. User can choose items from GalleryFrom move to GalleryTo. I want to save GalleryTo items with a fixed Category (means GalleryTo bind only one known Category) without Sources Categories items change. Its copy from other Categories items to current Category. I remove/delete all records from Dataverse table for this Category Before I save/patch ForAll items in GalleryTo because user can move between the two galleries freely. I made it work at this point. I also need the created record inside loop to patch related tables/sub tables information (SubTasks or Stages). That’s what I need returned records of Patch function…
@RezaDorrani
@RezaDorrani 7 месяцев назад
@@kellyliu4225 I make videos when I receive multiple requests on a topic. Every 6 months I ask subscribers for topic suggestions on Community Tab of my channel. Most voted idea gets added to my backlog. Make sure to post this idea whenever I post the next topic suggestion post.
@kellyliu4225
@kellyliu4225 7 месяцев назад
@@RezaDorraniI’m sure this video if you make will have a big impact in the community. It is beyond basic and very little information about the topic out there. Thanks!
@RezaDorrani
@RezaDorrani 7 месяцев назад
@@kellyliu4225 I know but my rule for making videos is set. Best to post this idea and let the community decide by votes.
@arunv1909
@arunv1909 8 месяцев назад
as always- great video , thanks . Hoping for videos on Power automate too please in future
@RezaDorrani
@RezaDorrani 8 месяцев назад
74 videos and growing on Power Automate ➡️ ru-vid.com/group/PLTyFh-qDKAiEs0rhQuR7fwSv5_63FHr_0
@arunv1909
@arunv1909 8 месяцев назад
@@RezaDorrani New ones i meant , great content always though
@RezaDorrani
@RezaDorrani 8 месяцев назад
@@arunv1909 New ones are being added each month.
@ealexander2488
@ealexander2488 5 месяцев назад
Do you have a video that will show how you can update, then have it send an individual email for each record that you updated? For instance, I have "Approved" as a status, once it is approved, an email goes to the next approver to review. Can I do that all on the same button? I tried using the patch but it will only send the email for the record that is selected and not the others.
@RezaDorrani
@RezaDorrani 5 месяцев назад
I do not have a video reference on this scenario. I will recommend checking on the forums at powerusers.microsoft.com/ in case someone has done something similar.
@ealexander2488
@ealexander2488 5 месяцев назад
@@RezaDorrani I will, but just so you know, you are the best. Thank you!
@zerocool200380
@zerocool200380 7 месяцев назад
Hi Reza, if we want to copy items are we forced to use For All?
@RezaDorrani
@RezaDorrani 7 месяцев назад
I have done 3-4 videos on bulk updates including copying like feature.
@danetto431
@danetto431 4 месяца назад
When I try to Patch the Collection to my Dataverse table it says it cannot patch Read-Only columns such as "createdby". How can I get it to Patch each record then?
@RezaDorrani
@RezaDorrani 4 месяца назад
I have not come experienced this and hence not sure what is the cause for your issue. I recommend posting your issue/query with screenshots on the forums at powerusers.microsoft.com
@kimwickens4367
@kimwickens4367 4 месяца назад
I'm having the same issue!
@danetto431
@danetto431 4 месяца назад
@@kimwickens4367 Tell me if you find a fix please
@meng-shanwu4475
@meng-shanwu4475 7 месяцев назад
Hi Reza, thank you for the video, can I ask what if this time I just want to update only status but not the priority? I tried to leave the priority as blank, but it will just patch it as blank.
@RezaDorrani
@RezaDorrani 7 месяцев назад
Add if condition and check if value is left blank then don’t include that in the update record
@meng-shanwu4475
@meng-shanwu4475 7 месяцев назад
@@RezaDorrani UpdateIf( colData, true, { TaskresultStatus: If( !IsBlank(ComboBox2_1.Selected), ComboBox2_1.Selected, ThisItem.TaskresultStatus ), 'Assigned to': If( !IsBlank(ComboBox2.Selected), ComboBox2.Selected, ThisItem.'Assigned to' ) } ); Patch(Ticket, colData); Clear(colData) is this formula wrong? it doesn't work for me... but I can't see what is incorrect....🥲
@meng-shanwu4475
@meng-shanwu4475 7 месяцев назад
@@RezaDorrani sorry can I ask what is wrong with this formula below? UpdateIf( colData, true, { TaskresultStatus: If( !IsBlank(ComboBox2_1.Selected), ComboBox2_1.Selected.Value, colData.TaskresultStatus ), 'Assigned to': If( !IsBlank(ComboBox2.Selected), ComboBox2.Selected, colData.'Assigned to' ) } ); Patch(Ticket, colData); Clear(colData) I can't get it work, sorry I am new to power apps, so please pardon me if this question is too silly...
@RezaDorrani
@RezaDorrani 7 месяцев назад
@@meng-shanwu4475 I cant guess the issue here on chat. I recommend posting your issue on forums (best place to post issues as there are many experts who assist) powerusers.microsoft.com
@adityadeshmukh3150
@adityadeshmukh3150 8 месяцев назад
It's just awesome!! ❤🎉
@SmartLearningAI
@SmartLearningAI 6 месяцев назад
How about also doing some stuff for model-driven apps?
@RezaDorrani
@RezaDorrani 6 месяцев назад
I did not get many requests on it. I make videos when I receive multiple requests on a topic. Every 6 months I ask subscribers for topic suggestions on Community Tab of my channel. Most voted topic ideas get added to my backlog. Make sure to suggest this idea whenever the next topic suggestion post is out.
@zerocool200380
@zerocool200380 8 месяцев назад
Hi Reza, how we can bulk delete in the same app you showcase?
@RezaDorrani
@RezaDorrani 8 месяцев назад
Check function removeif
@aysanhaghani5271
@aysanhaghani5271 5 месяцев назад
Hi Reza, This was working fine for me till last few days the suddenly I am getting the error when I am patching "Network error when using Patch function The specified column is read only and can't be modified" :(
@RezaDorrani
@RezaDorrani 5 месяцев назад
Check recent comments on video. Its some issue with latest version of power app that I am unaware of.
@sundararamanarikrishnan3672
@sundararamanarikrishnan3672 3 месяца назад
Dear Reza, When I try to use "Patch(SharePoint List Name, Collection name), i am getting error, but in your video it is working, why I am getting error, when try to patch all record from collection into SP list, the collection I created as clearcollect(SPList name, defaults(sp listname)). Please tell me what could be the reason.
@RezaDorrani
@RezaDorrani 3 месяца назад
Video description has link to download entire solution (members only - check description for details) I have not experienced the mentioned issue and hence not sure what the cause for it could be. I will recommend posting your issue on forums in case someone has experienced something similar powerusers.microsoft.com
@simranbudhwani4887
@simranbudhwani4887 7 месяцев назад
Hello Reza I am using a SQL view as my data source. So in the Patch function I would need to first map the primary key of my source table to the unique column of my view. So how can I modify the patch function to suit the view data source?
@RezaDorrani
@RezaDorrani 7 месяцев назад
I have not tried with sql views, so not sure about the options.
@mauroquinteros8783
@mauroquinteros8783 7 месяцев назад
I tried but could not do it, any news? would help!
@RezaDorrani
@RezaDorrani 7 месяцев назад
@@mauroquinteros8783 I dont plan to try it out. I would recommend checking or posting your query on forums in case someone has done something similar powerusers.microsoft.com/
@aravindricky2706
@aravindricky2706 8 месяцев назад
Speechless ❤
@ZeyaulHoda
@ZeyaulHoda 8 месяцев назад
Please make a video on this I have a job application form which is built by using patch Functions. In this I want to add Multiple Company experience (i.e. If anyone has 10 years' experience with 5 companies) with Role, Location, From date, To date, Organization Name and Job Type. This fields may add for 5 or 10 times also depends on consultants as Naukri or LinkedIn Portal. They select on(+) or add then the same repeating required details should be visible How can I make this??? As I have prepared other information in form.
@RezaDorrani
@RezaDorrani 8 месяцев назад
I make videos when I receive multiple requests on a topic. Every 6 months I ask subscribers for topic suggestions on Community Tab of my channel. Most voted idea gets added to my backlog. Make sure to post this idea whenever I post the next topic suggestion post.
@kennethgottfredsen767
@kennethgottfredsen767 6 месяцев назад
Hello. Can this work with the powerBI integration? I want to do this inside a powerBI report.
@RezaDorrani
@RezaDorrani 6 месяцев назад
Possible. Technique will be similar not same.
@kennethgottfredsen767
@kennethgottfredsen767 6 месяцев назад
@@RezaDorrani Hello again Reza. Will you make video where you make a gallery with a choice column with the PowerBI integration? I'm trying to select multiple rows and change their category, but it wont work. I just want to be able to change multiple rows and change their category on a status choice column. The code i have has no error, but it does not make and change and updates to the SharePoint list. Should i make a collection as a pre step? I dont know lol. Good videos as always. / Kenneth.
@RezaDorrani
@RezaDorrani 6 месяцев назад
@@kennethgottfredsen767 I make videos when I receive multiple requests on a topic. Every 6 months I ask subscribers for topic suggestions on Community Tab of my channel. Most voted idea gets added to my backlog. Make sure to post this idea whenever I post the next topic suggestion post. Better to post your query on forums.
@kennethgottfredsen767
@kennethgottfredsen767 6 месяцев назад
@@RezaDorrani Ok i will keep that in mind. Do you now a forum where I can post my problem?
@RezaDorrani
@RezaDorrani 6 месяцев назад
@@kennethgottfredsen767 powerusers.microsoft.com
@grungewess
@grungewess 2 месяца назад
it would be great to use items from on list to patch another in one go like this
@RezaDorrani
@RezaDorrani 2 месяца назад
Possible
@mizbhakhanum3974
@mizbhakhanum3974 8 месяцев назад
Hi Reza, I'm trying to create a multi select combo box in a gallery and patch those values (comma separated) back into sharepoint as text. Is this possible?
@RezaDorrani
@RezaDorrani 8 месяцев назад
I dont have a video reference on this. I recommend checking or posting your query on forums in case someone has done something similar powerusers.microsoft.com
@mizbhakhanum3974
@mizbhakhanum3974 8 месяцев назад
I'm having issue here that when I create a variable it duplicates in all items of gallery. I saw in one of your posts that we should use collection instead of variable. Can you please help me with an example?
@RezaDorrani
@RezaDorrani 8 месяцев назад
@@mizbhakhanum3974 debugging issues here on chat is not an option. Your best bet would be to post your issue on forums. There are various users who assist in their free time on forums.
@Jaraiya89
@Jaraiya89 6 месяцев назад
patch not working with dataverse? says guid record doesnt match table. any videos or links or workarounds?
@RezaDorrani
@RezaDorrani 6 месяцев назад
Dataverse unique identifier is a guid type column not ID as in SharePoint. I don't think I have a specific video reference on it. I recommend checking on the forums at powerusers.microsoft.com/ in case someone has done something similar.
@SafdarAli-qx2sm
@SafdarAli-qx2sm 8 месяцев назад
Bravo
@RezaDorrani
@RezaDorrani 8 месяцев назад
Thanks
@DonD-h3d
@DonD-h3d 5 месяцев назад
Hi Reza, do you know why I would be getting a network error that the column is read-only when it worked initially?
@RezaDorrani
@RezaDorrani 5 месяцев назад
No clue about that
@TylerMeverden
@TylerMeverden 5 месяцев назад
@@RezaDorrani I am having a similar issue. I wonder if it is a versioning update problem. It is because there are columns in the row of data that can not be modified; "filenamewithextension", "fullpath", etc. I was able to stop this by adding ".columnname" that I am modifying after the collection name in the patch formula. However, I am now creating new items every attempt, and can not get the original item to update.
@RezaDorrani
@RezaDorrani 5 месяцев назад
@@TylerMeverden Might be related. I have no plans to investigate on this issue as Im working on next set of video ideas. If you dont find a solution, please post it here so others can benefit from it
@SantosChimal-r5m
@SantosChimal-r5m 5 месяцев назад
@@RezaDorrani Same error, this is not working
@TylerMeverden
@TylerMeverden 5 месяцев назад
@@RezaDorrani Okay, so I haven't fixed the issue but I did get some additional info. I have an app published using this technique and it still works. The app uses version 3.24041.27. The app versions that I have made updates to and have not published use 3.24042.28, and they are now erroring. I have tried restoring the previous version, but power apps then removes it as an option once I attempt to restore. So, I need to learn a little about version histories. For now, don't update your currently published apps and they may still work until a better resolution is found.
@ryannolarte1788
@ryannolarte1788 3 месяца назад
how about multiple selection on a data table data source is excel to update one update?
@RezaDorrani
@RezaDorrani 3 месяца назад
I do not have a video reference on that scenario. I will recommend checking or posting your query on forums in case someone has done something similar powerusers.microsoft.com
@ShwethaPM-r1k
@ShwethaPM-r1k 7 месяцев назад
Hi Raza When using Updateif() im getting error in patch() i., e update function : the specified column is ready-only and cant be modified "
@RezaDorrani
@RezaDorrani 7 месяцев назад
I have not come across this issue and hence not sure what the cause could be. I recommend posting your issue on forums in case someone has experienced something similar powerusers.microsoft.com
@meshmut
@meshmut 4 месяца назад
Hello Buddy, got a solution on this? is so please share I'm as well stuck will appreciate @user-y
@DSEC_PSAIKIRAN
@DSEC_PSAIKIRAN Месяц назад
how to save the coldata into a seperate sharepoint list when clicked with a button after selecting all the checkboxes
@RezaDorrani
@RezaDorrani Месяц назад
Not something I have tried or have a video reference for. I will recommend checking or posting your query on forums in case someone has done something similar powerusers.microsoft.com
@swathimgb7295
@swathimgb7295 4 месяца назад
I have created gallery with checkbox and i want to add a new row to gallery. How can i do this.
@RezaDorrani
@RezaDorrani 4 месяца назад
Please check my playlist on grids
@gabrielako3164
@gabrielako3164 8 месяцев назад
Awesome! 👏👏👏👏. I was just searching for this exact tutorial earlier today. Thank you Reza
@RezaDorrani
@RezaDorrani 8 месяцев назад
Great!
@quachkhoaduy7565
@quachkhoaduy7565 5 месяцев назад
Tks
@RezaDorrani
@RezaDorrani 5 месяцев назад
Wc
@joywindsouza817
@joywindsouza817 4 месяца назад
In my gallery i have to click two times to check the checkbox. Why does this happen? The first click selects the item and second click checks the checkboz
@RezaDorrani
@RezaDorrani 4 месяца назад
I’ve not experienced this so not sure
@joywindsouza817
@joywindsouza817 4 месяца назад
@@RezaDorrani it happens on flexible height gallery with modern checkbox. It works with normal gallery and modern checkbox. Not sure what the reason is though
@RezaDorrani
@RezaDorrani 4 месяца назад
@@joywindsouza817 I have not tried with flexible height gallery so not sure
@SantosChimal-r5m
@SantosChimal-r5m 5 месяцев назад
I love you reza 😂
@RezaDorrani
@RezaDorrani 5 месяцев назад
Thanks
@petsworld000
@petsworld000 8 месяцев назад
@swathimgb7295
@swathimgb7295 4 месяца назад
How to add a new row to gallery
@RezaDorrani
@RezaDorrani 4 месяца назад
I will recommend watching my playlist on grid controls
@swathimgb7295
@swathimgb7295 4 месяца назад
@@RezaDorrani Thank you
@silumkomagwa389
@silumkomagwa389 8 месяцев назад
@RezaDorrani always showing us the SMART & CLEAN way to code. HIGH LEVEL, Thank you🤌
@RezaDorrani
@RezaDorrani 8 месяцев назад
I try my level best and so happy to hear the feedback.
@silumkomagwa389
@silumkomagwa389 8 месяцев назад
@@RezaDorrani 5 years from now when Power Platform is older lol you will be the reason for its growth and stability in the market.
Далее
ОНА БЫЛА ПЕВИЦЕЙ🤪
3:13:12
Просмотров 1,1 млн
小丑调戏黑天使的后果#short #angel #clown
00:16
When Khabib dropped Conor McGregor 👀 #nocommentary
00:59
Power Apps Select Multiple Items in A Gallery
13:47
Просмотров 16 тыс.
Top 5 Must-Know GALLERY Features in Power Apps
15:55
Просмотров 32 тыс.