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

Beginner Design Question: Building Quick Gradebook/Scoring Form

Hi, all-- forgive a beginner's question, but I am trying to build a quick peer-review gradebook for one of our teachers. We want to have a form which lists the class roster, and gives a dropdown 1-5 scoring list for each student. I want to write this back to an Excel sheet that will store the student's name and score. I've tried two things so far:

1) I made a gallery which pulled the roster, and lets us select a student and enter a score. This is great except that I have to hit submit each time, rather than being able to add all of the scores at once and hit submit. 

2) I tried to create a custom form where each data card had two controls: the number box and a label containing the students name. I can get the score to pass to the form, but I can't get the student's name to write back.

 

Any suggestions on how to approach this would be much appreciated! Thanks--

9 REPLIES 9
Delid4ve
Impactful Individual
Impactful Individual

1: I've not checked this is possible, but I'm pretty sure it is..
On the gallery I'm assuming when you select an item it takes you to a form to enter the score..
What about, within the gallery adding a dropdown for the score, removing the arrow to navigate to the form and instead having 1 confirm button on the screen thats set to Patch gallery.allitems back to your list. Like I say I don't know if this is possible. Another way would be to set the dropdown in the gallery on change property to patch the list(this definitely works as I use this method in my app).

2:is the score and student name in the same list? If so it should be a case of setting the form data source to your list and the item property to gallery.selected. It all depends on how the data is stored tho

Delid4ve
Impactful Individual
Impactful Individual

Just thought about this aswell.. are you using the form on submit function..
From experience, this doesn't show errors on updating fields and you would be better off using the patch function with a filter. It may be that on the data card for student name the update function is wrong, especially if you are using student name but it is stored in the list as an ID number for student from a different list, in this case you would have to set the update property to a lookup(listname,studentname = datacardvalue.text,ID)

Thanks for your help! I'm following your suggestions, and I created a gallery with a dropdown menu. Question: will this create new entries for each score, or will this replace/update the score each time? I'm concerned that it seems like there will only be one master column in my Excel table for "Score," and that value will get replaced with each update. Perhaps I'm not familiar enough with Patch.

 

On another note, I added the drop down menu to the Gallery control, and I set the Items field to = ThisItem.Score (name of column in data source). I have an error that "The property expects table values, but this rule produces incompatible Text values." 

 

Thanks again for your help!

Take a step back, we need to get your data structure right first.

Looking at your post im assuming you want to grade multiple subjects/exams.

1st step, your going to need three lists.

list 1: Students. for starters just create 1 column with their name, you can add other bits later.

list 2: subjects. again, for starters 1 column with the subject name in.

list 3: Grades. 4 columns in this 1, Subject,Grade,student,date.  Set all the column types as numbers except the date, which will be of type date (we will be populating this with the ID from each of the students and subjects lists, and assuming the grade is also a number (if its not then use whatever field type is necessary, keep away from lookup, we can set the choices within powerapps)

 

get started with that and ill post further.

Delid4ve
Impactful Individual
Impactful Individual

Within power apps we are going to need the following screens:

Screen 1: screen to choose what to do - this can have buttons on it with the onselect property set to navigate to each of the next

screen 2: screen to input results for each student for a given subject.

screen 3: screen to view results for a specific student

You can add screens later in order to add new subjects and students and view results by subject.(by then you should have a fairly decent understanding.

 

Screen 1

Each button should have its on select property set to:

Navigate(ScreenName,ScreenTransition:none)

 

Screen 2 - im going to set this up for a single subject, you can change this later if required by moving the dropdown to the gallery and changing your formulas slightly, but at the moment i assume you only want to input for 1 subject but multiple students.

 

Add a dropdown at the top of the screen and set its items property to Subjects on the advanced tab.(the name for your subjects list)

Set its value property to SubjectName (the column name in your list)

Add a date picker also to the top of the screen.

 

Add a gallery.  Set its items property on the advanced tab to Students (the name of your list which contains the students)

Now go to the properties tab and click data, you can now choose ust a simple 1 line gallery and set this to student name.

This should now populate with your students names.

Select the first gallery item so that the section box comes up around it, add a new control, dropdown.  You should see this dropdown get populated in each gallery item (for each student).

Select the dropdown in the first gallery item and on the advanced tab set its items property to [1,2,3,4,5,6,7,8,9,10] (this assumes your grades are 1-10)

Now set the on change property of the drop down to the following:

 

If(IsEmpty(Filter(Grades,Date=DatePickerName.Selected.Value And Subject = LookUp(Subject,SubjectName=SubjectDropdownName.Selected.Value,ID And Student = Thisitem.ID))),Patch(Grades,Defaults(Grades),{Student:Thisitem.ID,Grade:GradeDropdown.Selected.Value,Subject:LookUp(Subjects,SubjectName=SubjectDropdown.Selected.Value,ID)}),Patch(Grades,{ID:LookUp(Grades,Student=Thisitem.ID And Date=Datepickername.Selected.Value And Subject=LookUp(Subjects,SubjectName=SubjectDropdown.Selected.Value,ID),ID),{Grade:GradeDropdown.Selected.Value}))

 

Its not very clean but it will show you how im referencing things, there are better ways to achieve it but this wil help you understand a few functions.  So above we first ask a question wi the If function, that question is: For my selected date, subject and student does a record already exist in the grades table (IsEmpty) .

We then give it something to do for true, so my record doesnt exist so im going to add it (patch).  The defaults part of the patch function will automatically give the record an ID number.

then we give the function a false value. So my record does exist, so im going to update it.  We lookup the ID number for the row using the values we have, and then ammend the grade to the new value. (remember, if we put in a wrong grade and we change it we dont want to create a new record, just ammend the one already created.

 

Doing it this way saves having multiple screens and allows you to enter all the grades without having to confirm or submit anything.

 

Screen 3

 

Add a dropdown and set its items property to Students (listname of your students), change the value property to StudentName

Add a gallery and Set its item property to 

Filter(Grades,Student=Lookup(Students,StudentName=Dropdownname.Selected.Value,ID))

Select the first gallery item and insert a label.

Set the label text property to:

Lookup(Subjects,ID=ThisItem.Subject,SubjectName)

Add another label and set its text property to Thisitem.Grade

 

Probably a few mistakes in their as i havnt tested and had a few beers 🙂 youll have to ensure any names are correct such as dropdown/datepicker names and column/list names but it should give you the foundation of your app to move forward.

Once you get used to the syntax and functions it gets easy.  You could also add in a column for the user that submitted the grade, you can reference the logged in user using User().FullName.

 

Hope this helps.

Delid4ve
Impactful Individual
Impactful Individual

Apologies, ive just posted (waiting approval) but just realised you are using excel as your source, not sharepoint.  I havent had any experience with excel but you should just be able to modify parts of what i have posted to do what you want.  Based on wat you are tring to achieve though, i believe using  database would be a better option going forward and a sharepoint site (private to your organisation) would be a better option for scalability if this is going to be used on a regular basis and throught school years etc.

jtillinghast
Frequent Visitor

This is a little simpler than a full grade book. The end result is that we want to be able to run averages, plot trends over time, etc. I have a data table right now that has five columns: student name, timestamp, submitter ID, score, and a text field for comments. My original plan was to record every entry as a running list of records, so that we could just query the list for assignments matching last name. I have a separate table which is just all the names in the class.
jtillinghast
Frequent Visitor

And yes, I might be better off with a database. Since this is my first power apps run and I'm not very experienced in SharePoint, I wanted to stick with a data source I was comfortable operating, but perhaps that was too limiting?
Delid4ve
Impactful Individual
Impactful Individual

SharePoint sounds scary, I could never understand it for a long time. Now I find uses for it everyday.
I have posted a full breakdown of what you need to do, but for some reason it has gone to waiting approval, maybe because it has code snippets in it. Should show up soon, I hope.
As you have already got your data sources into powerapps from excel you should be able to convert my post for SharePoint into excel format.
Your going to need 3 tables in excel.
1 for students which you have with an ID number
1 for subjects/assignments with an ID number
1 to keep track of grades.
The grades table should have the student ID, subject ID, grade and date
This way you can keep a list of all grades for each student in each subject.
Obviously your excel file has to always be available, whereas the SharePoint way would always be online.
You could always use Microsoft flow to collect data every time a grade is added and automatically produce and email a certificate, generate reports for each student or subject.
Since discovering SharePoint, flow and powerapps it has opened my eyes to how much I can automate and save myself endless time. Watch out my my post to go live, sure it will get approved soon.

Helpful resources

Announcements

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/   

Register now for the Business Applications Launch Event | Tuesday, April 4, 2023

Join us for an in-depth look into the latest updates across Microsoft Dynamics 365 and Microsoft Power Platform 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 towards future growth with today’s leading technology.   Microsoft leaders and experts will guide you through the full 2023 release wave 1 and how these advancements will help you: Expand visibility, reduce time, and enhance creativity in your departments and teams with unified, AI-powered capabilities.Empower your employees to focus on revenue-generating tasks while automating repetitive tasks.Connect people, data, and processes across your organization with modern collaboration tools.Innovate without limits using the latest in low-code development, including new GPT-powered capabilities.    Click Here to Register Today!    

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