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

19 REPLIES 19

@tagustin2020 

 

use lookup if 'Calibration Past Due'  is True make Green Icon visible and when 'Calibration Past Due'  is False make Red Visible

 

Replace DataSource with name of DataSource where 'Calibration Past Due'  column is located

 

 

LookUp(DataSource,'BarCode Value' = Thisitem.'Barcode Value','Calibration Past Due')

 

 


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,

 

Thanks for all your help! I was getting a red line under the Not so I wrote the formula like this which seems to be working.

Not(ThisItem.'Barcode Value' in galBenches.AllItems.'Barcode Value')

 

I could use some help with the Green Check icon that indicates a tool is OK when it comes to calibration.

GreenCalCheck.png

The formula you gave me for the Red X icon is:

LookUp('Admin Desk Tools', 'Barcode Value'=ThisItem.'Barcode Value','Calibration Past Due')

How would I adjust this to display the icon when the toggle value is false? See reference gallery to the left.

 

Kind regards,

Teresa

 

 

@SebS 

 

Hello Seb,

 

Thank you for the "On Select" formula reply. I compared the formula you gave me (see below):

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

With the formula I had typed in and didn't see a difference, but I went ahead and copy/pasted the above formula over my own just in case. I'm still getting an error. I tried putting an extra parenthesis after the curly brace in case I misunderstood you, but that didn't work either. Can you please advise? Thanks! Teresa

 

ErrorLine.png

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

 

@SebS 

 

Hello Seb,

 

Apologies for the scope creep on this thread. I've already submitted a couple of pending questions to you so let me know if I'm lobbing too much over fence as I realize you are busy with your own projects. I do greatly appreciate your help and like how the app is shaping up. As I have been testing the app, I realized that it would be helpful if the Tool Description was included in the Collection to the right as well as having it in the left-hand data source gallery as it makes it easier to figure out what is still missing. Is there a LookUp formula I can plug into the Text property of the label to achieve this?

 

AGalleries.png

 

Hi @tagustin2020

 

Sorry, I was away from PC for a full day, and I'm just back.  

 

Just to make sure you understand, LookUp is a fairly easy function, and you can fetch any data from one table and transfer it to another table or label.

 

In Your scenario, most of the time, the Matching part will be handled by matching 'Barcode Value'

 

LookUp(DataSource, Matching Condition ('Barcode Value' = ThisItem.'Barcode Value'), Column You would like to pull Information from (Description))

 

This Item only works inside of the Gallery so if You want to use LookUp outside of the Gallery You need to hard code or You can use Gallery.Selected.'Barcode Value' property for example

 

LookUp(DataSource, 'Barcode Value' = ThisItem.'Barcode Value', Description)

 

I hope You sorted your Calibration check and Equipment Check, as they are showing nicely at your gallery now.

 

If You use Modern Controls, I suggest using Information Control. It's really nice to show any descriptions in a clean way for the User.


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,

 

No worries about the delay. You've been wonderful! I'm not completely done figuring things out, but I've made a lot of progress thanks to you! I provided a demo to the team, and they are very excited about the progress so thanks so much for your help! I was able to bring in the Asset Numbers and Descriptions into the Collection, but I'm having trouble writing the values back to the SharePoint list. Only the first value in the list, in this example, "Notepad" is written back to the SharePoint list. 

 

Gal3pm.png

Here is the latest version of the "Submit Scans" OnSelect formula. There are no errors, but only the first item writes back to the list. I tried inserting "item." in front of the lbl references, but it shows an error. Something about it not expecting Text.

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

 

I removed the following formula from the OnSelect because it shows as an error, but I still need to figure out a way to work it in.

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

 

I did ping you several times today on this thread with different questions so if you wouldn't mind checking them out, I'd be grateful. 

 

Kind regards,

Teresa

 

 

@tagustin2020 

 

Calibration missing just one ")" it should work now

 

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

 

The ForAll is simple. You never refer to control. You need to refer to the item in the collection I assumed both columns names are the same in collection and sharepoint

 

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

 


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 

 

Thank you for the quick response. This part of the formula is working.

ForAll(
    colTracking As item,
    Patch(
        'Admin Scan Log',
        Defaults('Admin Scan Log'),
        {
            'Barcode Value': item.'Barcode Value',
            'Operator Email': item.'Operator Email',
            Mismatch: tglMismatch.Value,
            'Calibration Past Due': tglPastDue.Value
        }
    )
);
Clear(colTracking);
Reset(txtScanBenchBarcode);
SetFocus(txtScanBenchBarcode);
Navigate('Confirmation Screen');

 

I had tried the item approach given your previous advice, but wasn't able to get it to work. These are the 2 problem formulas.

'Tool Description': item.'Tool Description',
            'Tool Asset Number': item.'Tool Asset Number',

 

When I hover over them, I get the following error message.

AA Text Error.png

 

When I type item. it only gives me these 2 options to choose from.

 

AA Text Miss.png

 

Thanks for hanging in there with me. What should I try next?

Teresa

 

 

@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.

@SebS 

 

Hi Seb,

 

Thank you for providing this formula. I have to run to a company dinner, so I'll have to take a closer look over the weekend. Have a great one!

 

Teresa

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,000)