cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
mr-dang
Community Champion
Community Champion

Patch a Collection

The release notes for 2.0.531 indicates an improvement to the Patch function that I'm excited about: 

 

 

7. Update multiple records at once by using the Patch function.

Create or update more than one record at a time by specifying a table of base records and 
a table of change records as arguments for the Patch function.

 

I think this is what I've been waiting for, but I'm not sure how to use it. 

 

Can I save a Collection with identical fields back to the datasource? For instance, can I Patch the rows in Collection1 into DataSource1 if they have identical columns? I've been trying:

 

Patch(DataSource1,Collection1)

 

but that does not result in any new rows written. What am I doing wrong?

 

 

EDIT: could it be that the default fields (Title, CreatedOnDateTime, etc.) are blank in the Collection, so it cannot be Patched with those blank?

Microsoft Employee
@8bitclassroom
40 REPLIES 40
hpkeong
Community Champion
Community Champion

Hi

 

Me, too, trying out several method but in vain.

 

Reading the blog..

https://powerapps.microsoft.com/en-us/blog/performance-refresh-forall-multiple-field-lookups-531/

 

... Performance, Refresh button, ForAll, and multiple field lookups

Finally, one of the reasons you gave us for needing iteration was the bulk update of data.  And ForAll can be used for that.  But as we think it may be common, we also added the ability to use the Patch function on a set of records instead of just modifying one record at a time....

 

Looks like ForALL and PATCH a set of records may have to work concurrently..??

hpkeong
rgruian
Power Apps
Power Apps

You can use:

 

    Patch(datasource, Collection1)

 

however you do need to have the right keys in the collection, so that Patch can find the proper records to patch. For example, if the primary key of your datasource is "Title", each row in Collection1 has to have a value for the "Title" field. The rest of the fields in the collection specify new values to be patched. The rows in Collection1 that do not have values for "Title" will be filtered out and will not contribute to the multi-patch operation.

 

Re. ForAll and Patch -- yes, these are concurrent functions, and they will not rely on, or guarantee, any specific order of operations. They are designed for parallel data processing.

 

I hope this helps.

 

Radu Gruian [MSFT] ** PowerApps Staff

@rgruian

 

If I use a single Patch, my Title field, which is my key, can be autogenerated as the next number in the sequence. It's like Max(Title)+1, but it solves for duplicates when two computers Patch at the same time.

 

In my setup, I might be able to use ForAll to make a temporary entry in the Title field for the rows I want to Patch, then Patch multiple rows.

Refresh(datasource);

Patch(datasource,
ForAll(Collection1,"datasourcename" & Text(Max(datasource,Value(Right(Title,10)))+1),"0000000000")
)

But there is still the possibility for duplicates since two computers could refresh at the same time and identify the same Max value. I am also unsure if the ForAll calculation can put its result in the Title column of Collection1.

 

Would it be possible to Patch multiple rows of Collection1 to empty rows in the original datasource--and at the same time autogenerate new Title or ID values that are next in the sequence without duplicates?

Microsoft Employee
@8bitclassroom

I am not sure I fully understand. Are you looking to add multiple new rows to your datasource? If that is the case, you should use Collect instead of Patch:

 

    Collect(datasource, Collection1)

 

Since you were using Patch though, I was assuming that you needed to replace existing rows in your datasource. Perhaps I misunderstood?

 

Patch has multiple overloads. You can use one of the following overloads to achieve what you need:

 

    Patch(DS, table_of_keys_and_field_updates)

    Patch(DS, table_of_keys, tables_of_field_updates)

    Patch(DS, record_of_key_and_field_updates)

    Patch(DS, row_with_key, record_of_updates, record_of_updates, ...)

    Patch(record, record, ...)

 

I hope this helps.

 

Radu Gruian [MSFT] ** PowerApps Staff

Collect works, but I think the problem I had last time was that PA became unsure if the datasource in Collect(datasource,Collection1) is a temporary collection or a connected datasource. So if I were to remove the datasource from PowerApps, all the formulas would continue to work, but they would point to a temporary collection. I have not checked to see if this is still the case. 

 

 

Microsoft Employee
@8bitclassroom


@rgruian wrote:

You can use:

 

    Patch(datasource, Collection1)

 

however you do need to have the right keys in the collection, so that Patch can find the proper records to patch. For example, if the primary key of your datasource is "Title", each row in Collection1 has to have a value for the "Title" field. The rest of the fields in the collection specify new values to be patched. The rows in Collection1 that do not have values for "Title" will be filtered out and will not contribute to the multi-patch operation.

 

Re. ForAll and Patch -- yes, these are concurrent functions, and they will not rely on, or guarantee, any specific order of operations. They are designed for parallel data processing.

 

I hope this helps.

 


 

Hi

 

Thanks for the explanation and I am trying out the first option: Multiple New Records, using

- Collect, &

- Patch

 

Anyway, I am unclear of the following in TUTORIAL

Patch function in PowerApps

Modify or create a set of records in a data source

Patch( DataSource, BaseRecordsTable, ChageRecordTable1, [, ChangeRecordTable2, … ] ),

 

But, with your:

Patch(DS, Collection1), it Works.

 

Just wonder of the Differences  in tutorial and yours!

 Multiple New RecordsMultiple New Records

 

hpkeong

Hi

 

Thanks for the explanation and I am trying out the first option: Multiple New Records, using

- Collect, &

- Patch

 

Anyway, I am unclear of the following in TUTORIAL

Patch function in PowerApps

Modify or create a set of records in a data source

Patch( DataSource, BaseRecordsTable, ChageRecordTable1, [, ChangeRecordTable2, … ] ),

 

But, with your:

Patch(DS, Collection1), it Works.

 

Just wonder of the Differences  in tutorial and yours!

 


@rgruian wrote:

You can use:

 

    Patch(datasource, Collection1)

 

however you do need to have the right keys in the collection, so that Patch can find the proper records to patch. For example, if the primary key of your datasource is "Title", each row in Collection1 has to have a value for the "Title" field. The rest of the fields in the collection specify new values to be patched. The rows in Collection1 that do not have values for "Title" will be filtered out and will not contribute to the multi-patch operation.

 

Re. ForAll and Patch -- yes, these are concurrent functions, and they will not rely on, or guarantee, any specific order of operations. They are designed for parallel data processing.

 

I hope this helps.

 


 

hpkeong

Hi

 

Now, I have a gallery and I wish to filter those RECORDS under a category to be UPDATED at a Batch, and then Patch back, without changing the KEY fields (say First Column). Is that possible?

 

I try using:

Patch(DS, BaseRecorsTable, ...)... what is your advice?

[My experience with School or even Factory Data where BATCH updating is faster:

e.g.: Attendance List : Present or Absent using CheckBox for a CLASS (say 40 students]

 

Use TextInput to append "Wish-Records" for updating in BATCH... Possible? If yes, how can I write Patch(...)Use TextInput to append "Wish-Records" for updating in BATCH... Possible? If yes, how can I write Patch(...)

hpkeong

 

I am assuming that the items in Gallery1 are all editable, e.g. via text input controls?

If so, please try the following:

 

Dropdown1.OnSelect = ClearCollect(SourceBook, Filter(TableBook, Language = Dropdown1.Selected.Value))

Gallery1.Items = SourceBook

Button2.OnSelect = Patch(TableBook, SourceBook, ForAll(Gallery1.AllItems, { Book: TextInput1.Text, Author: TextInput2.Text, Language: TextInput3.Text }))

 

Basically the idea is that you need to project the gallery items (which hold the state for each row after your manual changes) to a new table of {Book, Author, Language}. You can use ForAll to achieve that. You can also use AddColumns and ShowColumns. And there are other ways to do it too.

 

I hope this helps.

 

 

Radu Gruian [MSFT] ** PowerApps Staff

Helpful resources

Announcements

Community will be READ ONLY July 16th, 5p PDT -July 22nd

Dear Community Members,   We'd like to let you know of an upcoming change to the community platform: starting July 16th, the platform will transition to a READ ONLY mode until July 22nd.   During this period, members will not be able to Kudo, Comment, or Reply to any posts.   On July 22nd, please be on the lookout for a message sent to the email address registered on your community profile. This email is crucial as it will contain your unique code and link to register for the new platform encompassing all of the communities.   What to Expect in the New Community: A more unified experience where all products, including Power Apps, Power Automate, Copilot Studio, and Power Pages, will be accessible from one community.Community Blogs that you can syndicate and link to for automatic updates. We appreciate your understanding and cooperation during this transition. Stay tuned for the exciting new features and a seamless community experience ahead!

Summer of Solutions | Week 4 Results | Winners will be posted on July 24th

We are excited to announce the Summer of Solutions Challenge!   This challenge is kicking off on Monday, June 17th and will run for (4) weeks.  The challenge is open to all Power Platform (Power Apps, Power Automate, Copilot Studio & Power Pages) community members. We invite you to participate in a quest to provide solutions in the Forums to as many questions as you can. Answers can be provided in all the communities.    Entry Period: This Challenge will consist of four weekly Entry Periods as follows (each an “Entry Period”)   - 12:00 a.m. PT on June 17, 2024 – 11:59 p.m. PT on June 23, 2024 - 12:00 a.m. PT on June 24, 2024 – 11:59 p.m. PT on June 30, 2024 - 12:00 a.m. PT on July 1, 2024 – 11:59 p.m. PT on July 7, 2024 - 12:00 a.m. PT on July 8, 2024 – 11:59 p.m. PT on July 14, 2024   Entries will be eligible for the Entry Period in which they are received and will not carryover to subsequent weekly entry periods.  You must enter into each weekly Entry Period separately.   How to Enter: We invite you to participate in a quest to provide "Accepted Solutions" to as many questions as you can. Answers can be provided in all the communities. Users must provide a solution which can be an “Accepted Solution” in the Forums in all of the communities and there are no limits to the number of “Accepted Solutions” that a member can provide for entries in this challenge, but each entry must be substantially unique and different.    Winner Selection and Prizes: At the end of each week, we will list the top ten (10) Community users which will consist of: 5 Community Members & 5 Super Users and they will advance to the final drawing. We will post each week in the News & Announcements the top 10 Solution providers.  At the end of the challenge, we will add all of the top 10 weekly names and enter them into a random drawing.  Then we will randomly select ten (10) winners (5 Community Members & 5 Super Users) from among all eligible entrants received across all weekly Entry Periods to receive the prize listed below. If a winner declines, we will draw again at random for the next winner.  A user will only be able to win once overall. If they are drawn multiple times, another user will be drawn at random.  Individuals will be contacted before the announcement with the opportunity to claim or deny the prize.  Once all of the winners have been notified, we will post in the News & Announcements of each community with the list of winners.   Each winner will receive one (1) Pass to the Power Platform Conference in Las Vegas, Sep. 18-20, 2024 ($1800 value). NOTE: Prize is for conference attendance only and any other costs such as airfare, lodging, transportation, and food are the sole responsibility of the winner. Tickets are not transferable to any other party or to next year’s event.   ** PLEASE SEE THE ATTACHED RULES for this CHALLENGE**   Week 1 Results: Congratulations to the Week 1 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Community MembersNumber of SolutionsSuper UsersNumber of Solutions @anandm08  23 @WarrenBelz  31 @DBO_DV  10 @Amik  19 AmínAA 6 @mmbr1606  12 @rzuber  4 @happyume  7 @Giraldoj  3@ANB 6 (tie)   @SpongYe  6 (tie)     Week 2 Results: Congratulations to the Week 2 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Community MembersSolutionsSuper UsersSolutions @anandm08  10@WarrenBelz 25 @DBO_DV  6@mmbr1606 14 @AmínAA 4 @Amik  12 @royg  3 @ANB  10 @AllanDeCastro  2 @SunilPashikanti  5 @Michaelfp  2 @FLMike  5 @eduardo_izzo  2   Meekou 2   @rzuber  2   @Velegandla  2     @PowerPlatform-P  2   @Micaiah  2     Week 3 Results: Congratulations to the Week 3 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge.   Week 3:Community MembersSolutionsSuper UsersSolutionsPower Apps anandm0861WarrenBelz86DBO_DV25Amik66Michaelfp13mmbr160647Giraldoj13FLMike31AmínAA13SpongYe27     Week 4 Results: Congratulations to the Week 4 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge.   Week 4:Community MembersSolutionsSuper UsersSolutionsPower Apps DBO-DV21WarranBelz26Giraldoj7mmbr160618Muzammmil_0695067Amik14samfawzi_acml6FLMike12tzuber6ANB8   SunilPashikanti8

Check Out | 2024 Release Wave 2 Plans for Microsoft Dynamics 365 and Microsoft Power Platform

On July 16, 2024, we published the 2024 release wave 2 plans for Microsoft Dynamics 365 and Microsoft Power Platform. These plans are a compilation of the new capabilities planned to be released between October 2024 to March 2025. This release introduces a wealth of new features designed to enhance customer understanding and improve overall user experience, showcasing our dedication to driving digital transformation for our customers and partners.    The upcoming wave is centered around utilizing advanced AI and Microsoft Copilot technologies to enhance user productivity and streamline operations across diverse business applications. These enhancements include intelligent automation, AI-powered insights, and immersive user experiences that are designed to break down barriers between data, insights, and individuals. Watch a summary of the release highlights.    Discover the latest features that empower organizations to operate more efficiently and adaptively. From AI-driven sales insights and customer service enhancements to predictive analytics in supply chain management and autonomous financial processes, the new capabilities enable businesses to proactively address challenges and capitalize on opportunities.    

Updates to Transitions in the Power Platform Communities

We're embarking on a journey to enhance your experience by transitioning to a new community platform. Our team has been diligently working to create a fresh community site, leveraging the very Dynamics 365 and Power Platform tools our community advocates for.  We started this journey with transitioning Copilot Studio forums and blogs in June. The move marks the beginning of a new chapter, and we're eager for you to be a part of it. The rest of the Power Platform product sites will be moving over this summer.   Stay tuned for more updates as we get closer to the launch. We can't wait to welcome you to our new community space, designed with you in mind. Let's connect, learn, and grow together.   Here's to new beginnings and endless possibilities!   If you have any questions, observations or concerns throughout this process please go to https://aka.ms/PPCommSupport.   To stay up to date on the latest details of this migration and other important Community updates subscribe to our News and Announcements forums: Copilot Studio, Power Apps, Power Automate, Power Pages

Users online (786)