cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
Scott_Wightman
Frequent Visitor

Checklist in PowerApps

Hi there,

 

I am new to PowerApps but starting to get a basic understanding.

I'm trying to create a checklist app using a Canvas app. Since I have no data source to start from, I basically just created the app layout first and now want to connect to an Excel sheet to capture the results of the checklist. I have created a sheet where I would like to capture the date, user, site where the checklist is for (currently a drop down list), and the Yes/No answers to the checklist questions (currently a toggle for each question). I've connected the sheet but I'm at a loss how to capture the information and write it into the spreadsheet.

I'm guessing we need to have the app create a new record (or row in the sheet) on startup and store the values until the end of the sheet (click the Submit button) when it will write them all into the approriate columns. But the how is where things get quite difficult. I've been reading about the Patch function but I can't work out how to use it in this context.

Any help would be much appreciated. 

29 REPLIES 29
Anonymous
Not applicable

Below links might be helpful to start with:

 

https://docs.microsoft.com/en-us/powerapps/maker/canvas-apps/connections/connection-excel

 

follow the links provided in the documentation.

 

follow the link - https://docs.microsoft.com/en-us/powerapps/maker/canvas-apps/functions/function-patch

to know about patch function.

 

Thanks.

 

Thanks for that but I've already been through those. I have spent hours of reading before coming here.

 

The first link is about using an Excel sheet as a data source. I have no data source in this case, I am trying to capture new data into the Excel sheet.

I've read the information on the Patch function and I cannot quite work out how to match that information up to what I want to acheive here. The examples refer to using existing data as a key to which row we want to modify, again I have no data to key from here as it is a new entry in a blank row.

 

Regards

Scott

 

Hi @Scott_Wightman ,

Firstly, could you tell me how do you connect with excel, by choosing "import from excel" or "one drive"?718.PNG

If you choose "import from excel", this is static data. You could only display data from excel. It's not supported to update or create data to excel.

I suggest you upload your excel file to one drive and then connect with one drive in PowerApps.

Secondly, do you want to update data by using a drop down control?

If so, I've made a similar test for your reference:

1)insert  fieldname1,fieldname2,... in excel file   (It's not supported to create field in PowerApps)

2)format the data in excel as a table

3)upload the excel fiel to onedrive

4)connect with one drive

5)insert  drop down controls

Set the drop down's Items: ["Yes","No"]

6)insert a button

set the button's OnSelect:

Patch(tablename,Defaults(tablename),{fieldname1:Dropdown1.Selected.Value,fieldname2:Dropdown2.Selected.Value,....})

 

 

Best regards,

Community Support Team _ Phoebe Liu

 

 

Community Support Team _ Phoebe Liu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
rebeccas
Community Champion
Community Champion

Just do a Form..you shouldn't need to use Patch for this. 

 

Put a Form that is a New Form and connected to your Excel sheet (I prefer using SharePoint list..but it works close to the same as Excel) and when they are done have a button that does SubmitForm(). 

 

A lot of times people will think they can't do their's in a Form because it shows text input and they want a toggle or whatever it may be but you still can. If it defaults to a text input you can delete that and put your toggle in and then change the Update for the DataCard to:

 

If(Toggle1.Value=true,"Yes","No")

 

 

Hi Phoebe,

 

Thanks for your reply.

 

I connected to the Excel sheet via OneDrive.

 

I have one drop down list at the start that I want to capture the value chosen, the entire rest of the app is a series of toggle buttons, I just want to write a value to the Excel sheet if the toggle is changed from off to on.

Thanks for the example that is very helpful I think I can work out how to adapt it to the toggle button. 

2 questions please:

 

1. Are the fieldname1, fieldname2 etc the column headers in the Excel sheet? I assume yes.

2. How do you connect the fieldname1, fieldname 2 etc to the drop down control you've placed in the app so you can reference the fieldname1.Selected.Value?

3.. I understand the Default function creates a new row in the sheet with default values - how do you set what those default values are?

Hi Rebecca,

 

Thanks for your reply.

 

I am a beginner in PowerApps, so I'm not clear on what a Form is or how to create one and attach it to the spreadsheet. That is one of the key things I can't quite get a handle on. How to connect the various controls in the canvas app to the matching column and row in the spreadsheet and capture what is entered or set on the control or text field or dropdown. When the app is autocreated from existing data this is all done for you of course.

 

I'd also like to capture the users name - I've worked out how to display it but not how to write it to the spreadsheet in the Name column.

There will be many users creating checklists so we want the app to create a new row each time a user starts a new checklist and capture who they are, which site they selected in the dropdown list, the date and Yes or No depending on what they set the toggle to (default to No) the spreadsheet has columns for all of these things formatted as a table.

Hi @Scott_Wightman,

 

Hopefully I can help with this somewhat.

 

Firstly, in your Excel data source, I assume you have a sheet with a table, and that table has headers relating to each column. 

From here, in your app you need to go to Insert > Forms > Edit

 

You will see an empty square, and a prompt saying that it needs to be connected to a data source. This is where you connect it to your excel table. If you have not connected your app to your table, you can do so here. On the right side of the screen, there is the properties panel. You can select a data source from a drop down here, or add a new one.

 

You will be prompted to add fields. Add in the fields you want to populate using your app by selecting them from the Fields menu. The form will now have data cards, and each data card relates to a field from your table. You can add controls in to the data cards which will in-turn update that particular column. For example, you can add a text input control to your Name data card which will update that column when submitted. There will be one by default in your data cards.

 

On a side note, if you want to do this and have the form collect the user's name automatically without their input, set the Default value of this text input to Users().FullName, or something of that nature.

 

The Update property of any data cards should point to the relevant control in that data card. You could also, if using checkboxes or toggles, have the update property depend on that value. For example If(Checkbox1.Value=true,"Yes","No").

 

From there, if you change the Default Mode to New, the form will be ready to add new data to your data source. 

 

Once you have added your controls to your form, the submit button should have an OnSelect property of SubmitForm().

 

 

@Scott_Wightman 

 

@chrisog  explained most of it pretty well. Get started with what he gave you and hollar if you have any issues come up. 

 

You can do a lot within a form so get some of the basics of that down before you try using Patch. When you add the Form to your screen it is going to guess what you want to do but you can change and customize it however you like. Two main things I would mention when setting up your Form is that if you can't get your layout how you like try turning off the "snap to columns" ..which you wll see in the Properties in the panel to the right when you have the form selected. And if you are changing out stuff instead the data card you will need to select the data card, click Advanced on the right panel and then unlock the card. This will give you the ability to modify what is in the card how you like. 

 

I typically set up the place I want my data stored with mostly text fields (even if I want it choices in the app) and limity the users options from the app. It is much easier to do that, especially when setting conditions. 

 

Good luck!!!

Thanks for that Chris, 

 

I've been reluctant to take this route suggested also by Rebecca becuase it means thowing away most of the work I've done designing the app to look how I want and starting again with a Form but I've gone ahead and started that process now. It's making more sense as I play around with it.

 

Once I've confirmed I can get this to work I'll be happy to credit you and Rebecca with the answer.

 

Cheers

Scott

 

 

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