cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
tagustin2020
Power Participant
Power Participant

Patch a Collection to SharePoint List - All Entries Identical

Hello,

 

I'm trying to Patch a Collection to a SharePoint list, but all it does is write the same exact entry for whatever number of entries are in the Collection rather than looping through each individual one and recording it back correctly. Here is what the screen looks like before I press the log entries button (note the 2 entries in the lower right quadrant.

Quad Screen-2 Entries.png

When I examine the Items property of the Collection, both entries are showing up.

Collection Found.png

It gets written back to SharePoint like this. As you can see it only appears to be picking up the first barcode value that was scanned.

Duplicate Entries.png

Here is the OnSelect formula for the "Log Your Entries" button. I tried it without the "As item" reference as well with the same result.

ForAll(
    colTracking As item,
    Patch(
        'Admin Scan Log',
        Defaults('Admin Scan Log'),
        {
            'Barcode Value': lblBarcode.Text,
            'Operator Email':lblEmail.Text
        }
    )
);
Clear(colTracking); Reset(txtScanBenchBarcode)

 

Here is the current OnChange property of the Step 2 text input field. The group I am making the app for wants Operators to have immediate feedback as to whether or not the tools match the bench they are working at and whether or not the calibration is past due so in a perfect world, I'd like to be able to grab the information from the "Expected Tools" gallery on the left and patch the values (using the barcode as the key) to my "Admin Scan Log". Is that possible? If so, how do I go about it?

Collect(colTracking,{'Barcode Value':Self.Text,'Operator Email':varUser.Email});Reset(Self);SetFocus(Self);

 

 The items property of the Your Tools gallery is:

colTracking

 

Thanks in advance for your help!

Teresa

1 ACCEPTED SOLUTION

Accepted Solutions

@tagustin2020 

 

My bad 😛 I forgot that this collection only stores barcodes and emails ;]

 

ForAll(
    colTracking As item,
    Patch(
        'Admin Scan Log',
        Defaults('Admin Scan Log'),
        {
            'Barcode Value': item.'Barcode Value',
            'Operator Email': item.'Operator Email',
            'Tool Description': Lookup('Admin Desk Tools','Barcode Value' = item.'Barcode Value','Tool Description'),
            'Tool Asset Number': Lookup('Admin Desk Tools','Barcode Value' =          item.'Barcode Value','Tool Asset Number'),
            Mismatch: tglMismatch.Value,
            'Calibration Past Due':Lookup('Admin Desk Tools','Barcode Value' =          item.'Barcode Value','Past Due?')
        }
    )
);
Clear(colTracking);
Reset(txtScanBenchBarcode);
SetFocus(txtScanBenchBarcode);
Navigate('Confirmation Screen');

 

 

 Now your job is to correct all Names of Columns in LookUps to match names in 'Admin Desk Tools'  table


If you like this post, give a Thumbs up. Where it solved your request, Mark it as a Solution to enable other users to find it.

View solution in original post

19 REPLIES 19
SebS
Super User
Super User

Hi @tagustin2020 

 

You need to patch items from your collection but you patching the content of the controls instead

 

ForAll(
    colTracking As item,
    Patch(
        'Admin Scan Log',
        Defaults('Admin Scan Log'),
        {
            'Barcode Value': item.'Barcode Value',
            'Operator Email':item.'Operator Email'
        }
    )
);
Clear(colTracking); Reset(txtScanBenchBarcode)

 


If you like this post, give a Thumbs up. Where it solved your request, Mark it as a Solution to enable other users to find it.
tagustin2020
Power Participant
Power Participant

@SebS 

 

Thanks Seb! That worked like a charm. Did you happen to see my "Part B" question from the original post?

 

"The group I am making the app for wants Operators to have immediate feedback as to whether or not the tools match the bench they are working at and whether or not the calibration is past due so in a perfect world, I'd like to be able to grab the information from the "Expected Tools" gallery on the left and patch the values (using the barcode as the key) to my "Admin Scan Log". Is that possible? If so, how do I go about it?"

 

If you have any advice for me, I would greatly appreciate it!

Teresa

@tagustin2020 

 

Yes, it's possible. You can use LookUp and Veryfy if a Scanned Barcode exists in the galley or the source of the gallery.

 

Or you can check if the gallery contains the barcode by using "in" operation. It all depends on how you want to display this message to the Operator.

 

In Gallery, with your tools, You can add an icon that will indicate if the tool belongs to that bench or not and create a LookUp and if result of the lookup is not Blank means the Tool is in the collection and means it belong to the bench so You can display a icon indicating this


If you like this post, give a Thumbs up. Where it solved your request, Mark it as a Solution to enable other users to find it.

@SebS 

 

Hi Seb,

 

Great to hear that it is possible. The name of the SharePoint list shown in the gallery to the left is 'Admin Desk Tools'. To recap, the name of the list I am trying to write daily log entries to is 'Admin Scan Log'.

 

Below is an OnSelect formula that Warren Belz helped me with for a separate app where I was only scanning 1 barcode at a time (and providing immediate feedback) versus processing multiple barcodes all at once.

With(
    {
    _Record:
    LookUp(
        'Tools and Benches',
        'Barcode Value'= txtScanBenchBarcode.Text
    )
},
Patch(
    'Tool Bench Scan Log',
    Defaults('Tool Bench Scan Log'),
    {
        'Barcode Value': txtScanBenchBarcode.Text,
        'Operator Email': varUser.Email,
        'Equipment Match': tglIsMatch.Value,
        'Parent ID': _Record.ID
    }
    )
);
Navigate('Confirmation Screen');

Here is the OnSelect formula you just helped me with.

ForAll(
    colTracking As item,
    Patch(
        'Admin Scan Log',
        Defaults('Admin Scan Log'),
        {
            'Barcode Value': item.'Barcode Value',
            'Operator Email':item.'Operator Email'
        }
    )
);
Clear(colTracking); Reset(txtScanBenchBarcode)

 

I added some visual indicators. The one on the left is working, the one on the right is not.

The Visible property for the green check icon and label is below. 

 

ThisItem.'Barcode Value' in galBenches.AllItems.'Barcode Value'

 

CalibrationPastDue.png

I would also like to be able to provide a visual indicator if the tool is past the due date for calibration. I added a Yes/No toggle to the gallery on the left (Data Source: 'Admin Desk Tools'). Could you help me 1) figure out how to work it into the Patch formula so I can write it to the 'Admin Scan Log' data source and 2) Help me with the Visible property of the red X and associated label? If I can get those 2 things working, I can do the rest in Power Automate (an email is sent to the shift supervisor if something is off so they can help get it fixed). I am supposed to demo this prototype app tomorrow at 1pm to our Manufacturing Supervisor so if you could help me figure it out before then, I would be super grateful! No worries if you can't, I can always just tell her I'm working on it.

 

Thanks Seb!

Teresa

 

 

@tagustin2020 

 

One step at a time. Below is the formula: Adjust the column name in the LookUp. I assume it is called a Barcode also I assumed that 'Equipment Match' is Yes /  No

 

 

 

ForAll(
    colTracking As item,
    Patch(
        'Admin Scan Log',
        Defaults('Admin Scan Log'),
        {
            'Barcode Value': item.'Barcode Value',
            'Operator Email':item.'Operator Email'
            'Equipment Match':If(IsBlank(Lookup('Admin Desk Tools',Barcode = item.'Barcode Value'),false,true) 
        }
    )
);
Clear(colTracking); Reset(txtScanBenchBarcode)

 

 

 


If you like this post, give a Thumbs up. Where it solved your request, Mark it as a Solution to enable other users to find it.

@tagustin2020 

 

In the Right Visual use Not operator insted In:

 

ThisItem.'Barcode Value' Not galBenches.AllItems.'Barcode Value'

If you like this post, give a Thumbs up. Where it solved your request, Mark it as a Solution to enable other users to find it.

@SebS 

 

Hello Seb. Thank you for the prompt reply! The piece of data I am trying to Patch is actually called 'Calibration Past Due'. It is a Yes/No type column. The column names are the same in both lists: 'Calibration Past Due' and 'Barcode Value'. I'm getting red squigglies under the LookUp portion of the formula. How can I get it to recognize and write the stored value back to my 'Admin Scan Log' list? Am I simply missing a piece of punctuation or is there something else going on?

 

squiggle.png

Kind regards,

Teresa

@SebS 

 

Hi Seb,

 

I thank you for providing that formula as I can use it to show a red X icon if a scanned barcode is not matching anything in the left-hand gallery. The right visual indicator is actually a reference to the 'Calibration Past Due' column though. Can you advise me on how to show green or red indicators based on the true/false value of that column?

 

Thanks!

Teresa

@tagustin2020 

 

you missing ")"

 

If(IsBlank(Lookup('Admin Desk Tools','Barcode Value' = item.'Barcode Value'),false,true) 

If you like this post, give a Thumbs up. Where it solved your request, Mark it as a Solution to enable other users to find it.

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 (1,114)