cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
snan004
Helper I
Helper I

Check in and check out app importing and feeding responses back in to the same sharepoint list

Hi everyone,

 

I am new to sharepoint and powerapps and I'm in the process of creating the above app. I have managed to create a check in app which pulls up a sharepoint list and with the submitform function saves the data back to the list. Participants enter information in to a conditional powerapps form and that populates the fields in the sharepoint list. It also collects their expectations for the session.

 

I would also like to add a check out component where they answer post sessions questions. They would have to have checked in to check out and be able to answer questions without having to re enter all their details from the check in. I would like both the check out and check in components to be recorded as a single record on the sharepoint list (1 row).. 

 

Would this be possible? My apologies in advance if the scenario is unclear and I'm happy to answer further questions about it.

 

Thanks in advance!

1 ACCEPTED SOLUTION

Accepted Solutions

Hi @snan004 ,

Q1

I use text in textinput to set a variable. Name is variable.

Please refer set function :

https://docs.microsoft.com/en-us/powerapps/maker/canvas-apps/functions/function-set

Q2

Then you could filter based on this 'You are a:' field, like this:

Set(role, 'You are a:' textinput.Text);
SubmitForm(Form1);
If(
CountRows(Distinct(Filter(Participants,'What is your name?'=name), 'You are a:' ))>1,
RemoveIf(Participants,'What is your name?'=name,Not( 'You are a:' =role)
)

//role is another variable that I set, use text in yourarea textinput. Please replace with your textinput name.

 

 

Best regards,

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.

View solution in original post

17 REPLIES 17

Definitely doable. You would want to expand the columns in your current list to accommodate for check out times and questions/answers that you want to store. You can then check to see if the check in columns have values for a given user, and if yes, then expose the check out screen along with questions using the same row/ID so they dont have to enter their details again.

Does this sound like a good approach?

---
If you like this reply, please give kudos. And if this solves your problem, please accept this reply as the solution.

Thanks!
Hardit Bhatia
https://thepoweraddict.com

Thanks very much for the quick response.

 

Definitely doable. You would want to expand the columns in your current list to accommodate for check out times and questions/answers that you want to store.

 

This is definitely doable as I can add additional columns to my original sharepoint list.

 

You can then check to see if the check in columns have values for a given user

 

How do I check this? I have included a screenshot of my sharepoint list just so you have a better idea

 

, and if yes, then expose the check out screen along with questions using the same row/ID so they dont have to enter their details again.

 

I have included a screenshot of my welcome screen and the form - as you can see on submit the above list is populated. I'd like to somehow connect that same form (exclude these questions) with additional questions in an additional screen perhaps? Maybe include a search function where they can look up their name (since they have already signed in) and then answer additional questions and submit a second time to the same record..

 

Maybe you could point me in the direction of what functions I could use or an explanation/help link for them?

 

Thanks so much again!

So here is a high level design:

  1. Use your current Welcome and Check In screen for a user to enter their name & other details
  2. This will create a record in your SharePoint list
  3. On your Welcome screen, provide another button that says Check Out
  4. When the user clicks on the Check Out button, take them to a screen where they can search their record by entering their name
  5. You can then use a Search or LookUp function to find the record from your SP list where Name = what the user entered
  6. After the user enters their name, and selects a button, take them to another screen which will be similar to your Check In screen
  7. However, in this screen, you will have an edit form, Default Mode = Edit, and Items property set to the record you just looked up. This will ensure you are updating the same record and not creating a new one. 
  8. In this form though, you will only expose the fields that are appropriate to the check out process
  9. Provide a Submit button just like the one you have on your Check In screen to allow the user to submit the form using the SubmitForm function. 
  10. Once all of this is done, you can navigate the user to a confirmation screen if needed or back to the Welcome screen

 

Hope this helps. Let me know in case of any questions. 

 

---
If you like this reply, please give kudos. And if this solves your problem, please accept this reply as the solution.

 

Thanks!
Hardit Bhatia
https://thepoweraddict.com

Wow, thanks so much. This design is exactly what I need! I just have a few technical queries (as a PowerApps noobs...)

 

  1. Use your current Welcome and Check In screen for a user to enter their name & other details
  2. This will create a record in your SharePoint list
  3. On your Welcome screen, provide another button that says Check Out

Easily doable and I have created a new screen and linked it to the Check Out button

  1. When the user clicks on the Check Out button, take them to a screen where they can search their record by entering their name
  2. You can then use a Search or LookUp function to find the record from your SP list where Name = what the user entered

Ah, here I feel like I may not have explained properly before. The participant list is not a set list - i.e, it is not definite (I don't know the attendees before the event). So for the search function (which I assume I include as an Input text box?) = Name, I would have to manually type in the names of all the participants so that when they type their names it would appear? 

 

e.g. Person A enters details and submits (check in), Person A has to search for their name on the automatically populated list from submission, select and then edit record to add to it and then resubmit to update record (check out). 

 

Thanks so much again for your patience!

 

Or dont provide the search functionality. Just check the current logged in user using the User() function and then fetch the row that has the same username. The rest of the approach is similar to what I have outlined before.

Let me know if there are any more questions.

---
If you like this reply, please give kudos. And if this solves your problem, please accept this reply as the solution.

Thanks!
Hardit Bhatia
The Power Addict
https://thepoweraddict.com

Thanks again.

 

I'm afraid I am too new to Powerapps to figure out all the necessary code so quickly!

 

Instead of a search or look up function, would it be possible to include a list (through a gallery perhaps?) of all the users who are checked in and then the user can select their name from this list? Then it would go to an edit form where I only include the required fields for the check out process. 

 

If the lookup is a better option how do I set this up exactly? For example the user will select the check out button on the welcome screen and it would take them to a screen where they have to search/look up their name - do I set this up as an Input Text box? And what function and code would I use? For example, I insert the text box, chose OnSelect and then the user function (attached SS - participants is the sharepoint list which has been populated by check in and what is your name is the column with all the names).

 

If I manage to do this then do I insert another form (EditForm) and use the same list as an input for that? So the selected name above leads to the new list with fields they already filled out at check in hidden and only the relevant check out fields available? So the Form will have two separate names (Form1 on the check in screen and EditForm1 on the check out screen - the default mode is Edit on both)

 

Thanks so much!

Hi @snan004 ,

Do you want to have a check in/out apo?
Based on your description, I've made a similar test for your reference:

1)in welcome screen

insert a textinput( to enter name), a check-in button, a check-out button

set check-in button's OnSelect:

Patch(datasource,Deafults(datasource),{Name:TextInput1.Text});Navigates(checkinscreen)

 set check-out button's OnSelect:

If(IsEmpty(LookUp(datasource,Name=TextInput1.Text),
Notify("you haven't checked in"),
Navigate(checkoutscreen)
)

//please replace with your data source name and field name

Please notice required column in your data source.

Firstly, you need to enter name in the textinput manually. (since you do not know the user's name before)

Then, if you want to check in, click the check in button. You will create a new record for this user and navigate to checkinscreen.

If you want to check box, click the check out button. If you have already checked in, you will navigate to checkoutscreen. Or else you will get a warning.

462.PNG

 

2)in checkinscreen

Insert an edit form, set its data source to your data source, set its Item:

LookUp(datasource,Name=TextInput1.Text)

choose the fields that you want user to fill in when checking in 

insert a button to submit the form, set the button's OnSelect:

SubmitForm(Form1)

463.PNG

 

3)in checkoutscreen

Insert an edit form, set its data source to your data source, set its Item:

 

LookUp(datasource,Name=TextInput1.Text)

 

choose the fields that you want user to fill in when checking out 

insert a button to submit the form, set the button's OnSelect:

 

SubmitForm(Form2)

 

464.PNG

 

 

Best regards,

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.

Hello @v-yutliu-msft 

 

Thanks so much - this seems perfect for what i need.

 

A quick question as I get it going - I don't quite understand the Name input in the 

Patch(datasource,Deafults(datasource),{Name:TextInput1.Text});Navigates(checkinscreen)

I created a text in put box and entered my data source but I am not sure what the Name: is in the formula? I have attached a screenshot.

 

What do you mean by a required column in my original data source - do I have to enter a new column labelled <name> which is a compulsory response? At the moment it is ''What is your name?" in the list and I entered that but the formula gives me an error? Must i make it a required column?

 

Apologies for the questions, I am very new to writing code and powerapps!

 

Thanks again

@v-yutliu-msft 

 

Just to clarify again, my data source is not populated i.e. it's the check in process that populates it by creating a new record with each check in. So a name look up doesn't work as there are no names on the list for it to match . I hope that's not confusing! It's very difficult to explain all the tiny moving parts!

Helpful resources

Announcements

Power Platform Connections - Episode 6 | March 23, 2023

Episode Six of Power Platform Connections sees David Warner and Hugo Bernier talk to talk to Business Applications MVP Shane Young, alongside the latest news, product updates, and community blogs.    Use the hashtag #PowerPlatformConnects on social media for a chance to have your work featured on the show!      Show schedule in this episode:  0:00 Cold Open 00:24 Show Intro 01:02 Shane Young Interview 22:00 Blogs & Articles 22:20 Integrate FullCalendar.io with Power Pages 23:50 Text Data 25:15 Zero to Hero Power Apps Saga 25:44 Parent Hub Association 26:33 Using Custom Values for OneNote Power Automate References​ 28:04 ​Dynamics Power Israel 28:44 Create Beautiful Canvas Apps in Dataverse for Teams ​ 30:36 Outro & Bloopers  Check out the blogs and articles featured in this week’s episode:   https://francomusso.com/integrate-fullcalendar-io-with-power-pages-from-json-basics-to-advanced-outp... @crmbizcoach https://yerawizardcat.com/text/ @YerAWizardCat www.fromzerotoheroes.com/mentorship ​ @thevictordantas https://www.expiscornovus.com/2023/03/16/parent-hub-association/ ​ @Expiscornovus https://lindsaytshelton.com/2023/03/15/the-painful-process-of-custom-values-for-onenote-power-automa... @lshelton_Tech https://never-stop-learning.de/create-beautiful-canvas-apps-in-dataverse-for-teams/ @MMe2K    Action requested: Feel free to provide feedback on how we can make our community more inclusive and diverse.  This episode premiered live on our YouTube at 12pm PST on Thursday 23rd March 2023.  Video series available at Power Platform Community YouTube channel.    Upcoming events:  Business Applications Launch – April 4th – Free and Virtual! M365 Conference - May 1-5th - Las Vegas Power Apps Developers Summit – May 19-20th - London European Power Platform conference – Jun. 20-22nd - Dublin Microsoft Power Platform Conference – Oct. 3-5th - Las Vegas  Join our Communities:  Power Apps Community Power Automate Community Power Virtual Agents Community Power Pages Community  If you’d like to hear from a specific community member in an upcoming recording and/or have specific questions for the Power Platform Connections team, please let us know. We will do our best to address all your requests or questions. 

Announcing | Super Users - 2023 Season 1

Super Users – 2023 Season 1    We are excited to kick off the Power Users Super User Program for 2023 - Season 1.  The Power Platform Super Users have done an amazing job in keeping the Power Platform communities helpful, accurate and responsive. We would like to send these amazing folks a big THANK YOU for their efforts.      Super User Season 1 | Contributions July 1, 2022 – December 31, 2022  Super User Season 2 | Contributions January 1, 2023 – June 30, 2023    Curious what a Super User is? Super Users are especially active community members who are eager to help others with their community questions. There are 2 Super User seasons in a year, and we monitor the community for new potential Super Users at the end of each season. Super Users are recognized in the community with both a rank name and icon next to their username, and a seasonal badge on their profile.    Power Apps  Power Automate  Power Virtual Agents  Power Pages  Pstork1*  Pstork1*  Pstork1*  OliverRodrigues  BCBuizer  Expiscornovus*  Expiscornovus*  ragavanrajan  AhmedSalih  grantjenkins  renatoromao    Mira_Ghaly*  Mira_Ghaly*      Sundeep_Malik*  Sundeep_Malik*      SudeepGhatakNZ*  SudeepGhatakNZ*      StretchFredrik*  StretchFredrik*      365-Assist*  365-Assist*      cha_cha  ekarim2020      timl  Hardesh15      iAm_ManCat  annajhaveri      SebS  Rhiassuring      LaurensM  abm      TheRobRush  Ankesh_49      WiZey  lbendlin      Nogueira1306  Kaif_Siddique      victorcp  RobElliott      dpoggemann  srduval      SBax  CFernandes      Roverandom  schwibach      Akser  CraigStewart      PowerRanger  MichaelAnnis      subsguts  David_MA      EricRegnier  edgonzales      zmansuri  GeorgiosG      ChrisPiasecki  ryule      AmDev  fchopo      phipps0218  tom_riha      theapurva  takolota     Akash17  momlo     BCLS776  Shuvam-rpa     rampprakash  ScottShearer     Rusk  ChristianAbata     cchannon  Koen5     a33ik        AaronKnox        Matren        Alex_10        Jeff_Thorpe        poweractivate        Ramole        DianaBirkelbach        DavidZoon        AJ_Z        PriyankaGeethik        BrianS        StalinPonnusamy        HamidBee        CNT        Anonymous_Hippo        Anchov        KeithAtherton        alaabitar        Tolu_Victor        KRider        sperry1625        IPC_ahaas      zuurg    rubin_boer   cwebb365      If an * is at the end of a user's name this means they are a Multi Super User, in more than one community. Please note this is not the final list, as we are pending a few acceptances.  Once they are received the list will be updated. 

Microsoft Power Platform Conference | Registration Open | Oct. 3-5 2023

We are so excited to see you for the Microsoft Power Platform Conference in Las Vegas October 3-5 2023! But first, let's take a look back at some fun moments and the best community in tech from MPPC 2022 in Orlando, Florida.   Featuring guest speakers such as Charles Lamanna, Heather Cook, Julie Strauss, Nirav Shah, Ryan Cunningham, Sangya Singh, Stephen Siciliano, Hugo Bernier and many more.   Register today: https://www.powerplatformconf.com/   

Check out the new Power Platform Communities Front Door Experience!

We are excited to share the ‘Power Platform Communities Front Door’ experience with you!   Front Door brings together content from all the Power Platform communities into a single place for our community members, customers and low-code, no-code enthusiasts to learn, share and engage with peers, advocates, community program managers and our product team members. There are a host of features and new capabilities now available on Power Platform Communities Front Door to make content more discoverable for all power product community users which includes ForumsUser GroupsEventsCommunity highlightsCommunity by numbersLinks to all communities Users can see top discussions from across all the Power Platform communities and easily navigate to the latest or trending posts for further interaction. Additionally, they can filter to individual products as well.       Users can filter and browse the user group events from all power platform products with feature parity to existing community user group experience and added filtering capabilities.     Users can now explore user groups on the Power Platform Front Door landing page with capability to view all products in Power Platform.    Explore Power Platform Communities Front Door today. Visit Power Platform Community Front door to easily navigate to the different product communities, view a roll up of user groups, events and forums.

Welcome to the Power Apps Community

Welcome! Congratulations on joining the Microsoft Power Apps community! You are now a part of a vibrant group of peers and industry experts who are here to network, share knowledge, and even have a little fun! Now that you are a member, you can enjoy the following resources:   The Microsoft Power Apps Community Forums If you are looking for support with any part of Microsoft Power Apps, our forums are the place to go. They are titled "Get Help with Microsoft Power Apps " and there you will find thousands of technical professionals with years of experience who are ready and eager to answer your questions. You now have the ability to post, reply and give "kudos" on the Power Apps community forums! Make sure you conduct a quick search before creating a new post because your question may have already been asked and answered!   Microsoft Power Apps IdeasDo you have an idea to improve the Microsoft Power Apps experience, or a feature request for future product updates? Then the "Power Apps Ideas" section is where you can contribute your suggestions and vote for ideas posted by other community members. We constantly look to the most voted Ideas when planning updates, so your suggestions and votes will always make a difference.   Community Blog & NewsOver the years, more than 600 Power Apps Community Blog Articles have been written and published by our thriving community. Our community members have learned some excellent tips and have keen insights on building Power Apps. On the Power Apps Community Blog, read the latest Power Apps related posts from our community blog authors around the world. Let us know if you would like to become an author and contribute your own writing — everything Power Apps related is welcome!   Power Apps Samples, Learning and Videos GalleriesOur galleries have a little bit of everything to do with Power Apps. Our galleries are great for finding inspiration for your next app or component. You can view, comment and kudo the apps and component gallery to see what others have created! Or share Power Apps that you have created with other Power Apps enthusiasts. Along with all of that awesome content, there is the Power Apps Community Video & MBAS gallery where you can watch tutorials and demos by Microsoft staff, partners, and community gurus in our community video gallery.   Again, we are excited to welcome you to the Microsoft Power Apps community family! Whether you are brand new to the world of process automation or you are a seasoned Power Apps veteran. Our goal is to shape the community to be your ‘go to’ for support, networking, education, inspiration and encouragement as we enjoy this adventure together!   Let us know in the Community Feedback if you have any questions or comments about your community experience.To learn more about the community and your account be sure to visit our Community Support Area boards to learn more! We look forward to seeing you in the Power Apps Community!The Power Apps Team

Microsoft Power Platform | March 2023 Newsletter

Welcome to our March 2023 Newsletter, where we'll be highlighting the great work of our members within our Biz Apps communities, alongside the latest news, video releases, and upcoming events. If you're new to the community, be sure to subscribe to the News & Announcements and stay up to date with the latest news from our ever-growing membership network who find real "Power in the Community".    LATEST NEWS Power Platform Connections Check out Episode Five of Power Platform Connections, as David Warner II and Hugo Bernier chat with #PowerAutomate Vice President, Stephen Siciliano, alongside reviewing out the great work of Vesa Juvonen, Waldek Mastykarz, Maximilian Müller, Kristine Kolodziejski, Danish Naglekar, Cat Schneider, Victor Dantas, and many more.   Use the hashtag #PowerPlatformConnects on social media for a chance to have your work featured on the show!   Did you miss an episode?  Catch up now in the Community Connections Galleries Power Apps, Power Automate, Power Virtual Agents, Power Pages     Power Platform leading a new era of AI-generated low-code development.   **HOT OFF THE PRESS** Fantastic piece here by Charles Lamanna on how we're reinventing software development with Copilot in Power Platform to help you can build apps, flows, and bots with just a simple description! Click here to see the Product Blog         Copilot for Power Apps - Power CAT Live To follow on from Charles' blog, check out #PowerCATLive as Phil Topness gives Clay Wesener Wesner a tour of the capabilities of Copilot in Power Apps.       UPCOMING EVENTS   Modern Workplace Conference Check out the Power Platform and Microsoft 365 Modern Workplace Conference that returns face-to-face at the Espace St Martin in Paris on 27-28th March. The #MWCP23 will feature a wide range of expert speakers, including Nadia Yahiaoui, Amanda Sterner, Pierre-Henri, Chirag Patel, Chris Hoard, Edyta Gorzoń, Erika Beaumier, Estelle Auberix, Femke Cornelissen, Frank POIREAU, Gaëlle Moreau, Gilles Pommier, Ilya Fainberg, Julie Ecolivet, Mai-Lynn Lien, Marijn Somers, Merethe Stave, Nikki Chapple, Patrick Guimonet, Penda Sow, Pieter Op De Beéck, Rémi Riche, Robin Doudoux, Stéphanie Delcroix, Yves Habersaat and many more.  Click here to find out more and register today!     Business Applications Launch 2023 Join us on Tuesday 4th April 2023 for an in-depth look into the latest updates across Microsoft Power Platform and Microsoft Dynamics 365 that are helping businesses overcome their biggest challenges today. Find out about new features, capabilities, and best practices for connecting data to deliver exceptional customer experiences, collaborating and creating using AI-powered capabilities, driving productivity with automation, and building future growth with today’s leading technology. Click Here to Register Today!       Power Platform Conference 2023 We are so excited to see you for the Microsoft Power Platform Conference in Las Vegas October 3-5th, 2023! But first, let's take a look below at some fun moments from MPPC 2022 in Orlando Florida. 2023 sees guest speakers such as Charles Lamanna, Heather Cook, Julie Strauss, Nirav Shah, Ryan Cunningham, Sangya Singh, and many more taking part, so why not click the link below to register for the #PowerPlatformConf today! Vegas, baby! Click Here to Register Today!      COMMUNITY HIGHLIGHTS Check out our top Super and Community Users reaching new levels!  These hardworking members are posting, answering questions, kudos, and providing top solutions in their communities.   Power Apps:  Super Users:  @WarrenBelz  |  @iAm_ManCat  Community Users: @LaurensM | @Rusk | @RJM07    Power Automate:   Super Users: @abm  | @Expiscornovus | @RobElliott  Community Users:  @grantjenkins | @Chriddle    Power Virtual Agents:   Super Users: @Expiscornovus | @Pstork1  Community Users: @MisterBates | @Jupyter123 | Kunal K   Power Pages: Super Users:  @OliverRodriguesOliverRodrigues | @Mira_Ghaly  Community Users: @FubarFubar | @ianwukianwuk  LATEST PRODUCT BLOG ARTICLES  Power Apps Community Blog  Power Automate Community Blog  Power Virtual Agents Community Blog  Power Pages Community Blog  Check out 'Using the Community' for more helpful tips and information:  Power Apps, Power Automate, Power Virtual Agents, Power Pages 

Top Solution Authors
Top Kudoed Authors
Users online (2,040)