cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
firektl
Helper III
Helper III

Gallery with date columns

Hello Community,

I hope everyone is well.

I am developing a dashboard which I want to show me the assists according to selected parameters.

I am connecting my dashboard to two sharepoint lists, these lists have the following structure:

 

In the SessionMetaData list I have:

Title: unique field
ClassId: class identifier (team ID in Microsoft Teams)
LessonDate: class date
StartTime / EndTime: start time and end time of the class
ClassName: Class name (team in Microsoft Teams)
TeacherEmailAlias: email of the teacher who takes the attendance.

 

sessionMetaData.png

 

In the AttendanceRecord list:

Title: unique field
LessonId: Code of the sessionMetaData list (with whom I relate both lists)
LessonDate: date of attendance.
Attendance: I save the student's attendance (present, absent, late, excused)
StudentEmail: student's email.
Notes: a comment.
AttendanceTakenBy: name of the teacher taking attendance.
ClassId: class identifier (team ID in Microsoft Teams).
StartTime / EndTime: start time and end time of the class.
StudentName: name of the student.
ClassName: Name of the class (team in Microsoft Teams).

 

attendanceRecord.png

 

I require to display the information like this:

 

ATTENDANCE.png

 

The problem is in how to generate the columns of the dates, since they are going to vary depending on the class.


Please have any idea how to display the information.

 

Thank you very much

43 REPLIES 43

@RandyHayes 


Sorry, but I just read your message.

 

Here I could not move forward because it needs to present the data in some way and I decided to do it in another way, only now if they are asking me to show the data in that way.

 

The relationship between SessionMetaData and AttendanceRecord is through LessonId.

 

SessionMetaData has a Title field and that field is related to AttendanceRecord by the LessonId field

 

SessionMetaData -> Title

AttendanceRecord -> LessonId

 

Additionally, both tables have a field named ClassId that has been the identifier of the Microsoft Group team.

 

My intention is that when selecting the class to have the students as rows and the dates as columns, when making the intersection indicate their attendance.

 

I hope you have understood me, thank you very much for taking the trouble to read and again I apologize for the delay, only that I had not read your message

RandyHayes
Super User
Super User

@firektl 

One additional question - is there a record in the SessionMetaData list for each date of the class?  I.e. If Class X has a lesson dates on 12/1, 12/4 and 12/6, are there then three records in the list, one for each date?

_____________________________________________________________________________________
Digging it? - Click on the Thumbs Up below. Solved your problem? - Click on Accept as Solution below. Others seeking the same answers will be happy you did.
NOTE: My normal response times will be Mon to Fri from 1 PM to 10 PM UTC (and lots of other times too!)
Check out my PowerApps Videos too! And, follow me on Twitter @RandyHayes

Really want to show your appreciation? Buy Me A Cup Of Coffee!


Hi @RandyHayes 

Correct, for each attendance a record is saved in the SharePoint list, when registering an attendance a single item is created in the SessionMetaData table and N (for each student) records in AttendanceRecorde.

 

I attach some images of the SharePoint list.

 

AttendanceRecord

AttendanceRecord.png

 SessionMetaData

sessionMetaData.png

 

RandyHayes
Super User
Super User

@firektl 

So actually, that wasn't exactly what I was asking for - I wanted to know if the SessionMetaData had a record for each date.  I assumed that Attendance would certainly have a date for each entry, but I was looking to see where to find the date "truth".  

I believe, based on the image, that there is a single record for the class and then the dates that the class occur are not stored in that record (or as multiple records in the list), but instead are in the Attendance.  

So, I would wonder why you would have a lesson date in the SessionMetaData...since the image only shows correlation between the two lists in regard to only ONE lesson date, perhaps my assumption is incorrect and there is in fact a record in SessionMetaData for each lesson date....please clarify.

_____________________________________________________________________________________
Digging it? - Click on the Thumbs Up below. Solved your problem? - Click on Accept as Solution below. Others seeking the same answers will be happy you did.
NOTE: My normal response times will be Mon to Fri from 1 PM to 10 PM UTC (and lots of other times too!)
Check out my PowerApps Videos too! And, follow me on Twitter @RandyHayes

Really want to show your appreciation? Buy Me A Cup Of Coffee!

Good Morning @RandyHayes 

 

I hope you are well.

 

I wanted to know if the SessionMetaData had a record for each date. 


Answer: Yes, for each date a single record is created in SessionMetaData.

 

The application I am using is called Attendance App and it is available on the web, I just adapted it to my organization,  there is a selection called "Data stores" where they detail how the information is stored.

 

Thanks again for your time and sorry if I am not complicating you a bit.

 

 

 

RandyHayes
Super User
Super User

@firektl 

Nope...all makes sense and I am glad you have a record for each date in the session metadata list - this will make it much simpler.

I will get you a solution for this tomorrow (if you don't hear back from me - nag me) - sorry for the delay.

_____________________________________________________________________________________
Digging it? - Click on the Thumbs Up below. Solved your problem? - Click on Accept as Solution below. Others seeking the same answers will be happy you did.
NOTE: My normal response times will be Mon to Fri from 1 PM to 10 PM UTC (and lots of other times too!)
Check out my PowerApps Videos too! And, follow me on Twitter @RandyHayes

Really want to show your appreciation? Buy Me A Cup Of Coffee!

Hi @RandyHayes ,

 

Sorry for the trouble, but you told me: "nag me" if I didn't have an answer from you, and here.

 

I am! You are my hope! 👼

RandyHayes
Super User
Super User

@firektl 

Yikes!  Sorry that I dropped it.  That's why I said...nag me 😅

 

Here is what I came up with.  I put a Dropdown on my screen and set the Items property to the following:

AddColumns(
        GroupBy(
            SessionMetaData,
            "Title",
            "_records"
        ),
        "Attendance", GroupBy(Filter(AttendanceRecord, LessonID =Title), "Student", "_studentRecords")
    )

This is based on the tables that you gave pictures of (except I was lazy and used Student instead of StudentName).

 

Now, I have a Gallery on the screen and its Items property is set to the following:

ForAll(Sequence(CountRows(Dropdown1.Selected.Attendance)+1,0), 
    With({thisItem:Coalesce(Last(FirstN(Dropdown1.Selected.Attendance, Value)), Blank())},
        {student: If(Value=0, "STUDENT", thisItem.Student),
        _attendance: 
            If(Value=0, 
                ForAll(Dropdown1.Selected._records, 
                    {stat:Text(LessonDate, "[$-en-US]d-mmm")}
                ), 
                ForAll(Dropdown1.Selected._records As Recs, 
                    {stat: If(IsBlank(
                           LookUp(thisItem._studentRecords, 
                             LessonDate=Recs.LessonDate, LessonDate)
                          ), "A", "P")
                    }
                )
            )
        }
    )
)

This gives us a nice table of records with a student column and a _attendance column.  The student column is the student name, and the _attendance column is the table of attendance records for that class and that student.

 

To reduce the extraneous amount of controls to create a Header for the Gallery, I inject a first row (Value 0 in the above) that has "STUDENT" for student and the gathered list of class dates (done in the dropdown).  So, if Value=0 (the injected row), then _attendance column (which will be a table returned from the ForAll's) gets the Text version of the LessonDate in the d-mmm format in the stat column of the records.  Otherwise it will be a table of records based on a Lookup into the Attendance table (again done in the DropDown record) based on the date of the class LessonDate and the Student (which is actually already filtered out from the DropDown).  In other words the Attendance table column on the DropDown will only have the list of dates that the student attended (and it is grouped by the student) and this formula will match those into a table for that student, this class and their attendance based on lookup.

 

The First Gallery has a label in it with the Text property set to : ThisItem.student

 

So now that we have this nice grouped, filtered, and prepared table, we can feed it to the next level, which is a Nested Gallery in the first Gallery.  It is a Horizontal Gallery, so that we can have columns.

The Items property for that is set to ThisItem._attendance

There is a Label in the second gallery with a Text property set to : ThisItem.stat

 

Putting it all in play...it looks like this:

firetkl.gif

I've attached a sample app for you. Download it to your computer.  Then go into PowerApps designer and either open an existing App or Create a New one (not making a difference which because you are going to open this one).  Go to File->Open->Browse and then browse for the downloaded file to open it.

 

I've made a mocked up list of data.  You can find all of that in the Dropdown Items property.

 

Examine this all and let me know if you have any questions.

 

 

_____________________________________________________________________________________
Digging it? - Click on the Thumbs Up below. Solved your problem? - Click on Accept as Solution below. Others seeking the same answers will be happy you did.
NOTE: My normal response times will be Mon to Fri from 1 PM to 10 PM UTC (and lots of other times too!)
Check out my PowerApps Videos too! And, follow me on Twitter @RandyHayes

Really want to show your appreciation? Buy Me A Cup Of Coffee!

Hello @RandyHayes 

 

Ohhh it looks super, I'm going to adapt it to my code and I'll tell you how I'm doing, thank you very much for your time. He wrote to you directly, if you can answer me.

 

Total thanks.

Hi @RandyHayes 

 

I am trying to implement the code you made.

Initially, I am creating a Dropdown and placing the code

 

AddColumns(
    GroupBy(
        SessionMetaData;
        "Title";
        "_records"
    );
    "Attendance";
    GroupBy(
        Filter(
            AttendanceRecord;
            LessonId = Title
        );
        "StudentEmailId";
        "_studentRecords"
    )
)

 

But I get an error. error 3.png

 

I understand that at this point you want to generate the dates by class.

 

In the code you sent me, you create tables from the SessionMetaData and AttendanceRecord lists, should I also create these tables?

 

Thank you, I am attentive to your comments.

Helpful resources

Announcements

Power Platform Connections Ep 15 | L. Baybutt | Thursday, 1 June 2023

Episode Fifteen of Power Platform Connections sees David Warner and Hugo Bernier talk to Microsoft MVP Lewis Baybutt aka Low Code Lewis, alongside the latest news and community blogs.   Use the hashtag #PowerPlatformConnects on social media for a chance to have your work featured on the show.      Action requested: Feel free to provide feedback on how we can make our community more inclusive and diverse.  This episode premiers live on our YouTube at 12pm PST on Thursday 1st June 2023.  Video series available at Power Platform Community YouTube channel.    Upcoming events:  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.   

May 2023 Community Newsletter and Upcoming Events

Welcome to our May 2023 Community Newsletter, where we'll be highlighting the latest news, releases, upcoming events, and the great work of our members inside the Biz Apps communities. If you're new to this LinkedIn group, be sure to subscribe here in the News & Announcements to stay up to date with the latest news from our ever-growing membership network who "changed the way they thought about code".       LATEST NEWS "Mondays at Microsoft" LIVE on LinkedIn - 8am PST - Monday 15th May  - Grab your Monday morning coffee and come join Principal Program Managers Heather Cook and Karuana Gatimu for the premiere episode of "Mondays at Microsoft"! This show will kick off the launch of the new Microsoft Community LinkedIn channel and cover a whole host of hot topics from across the #PowerPlatform, #ModernWork, #Dynamics365, #AI, and everything in-between. Just click the image below to register and come join the team LIVE on Monday 15th May 2023 at 8am PST. Hope to see you there!     Executive Keynote | Microsoft Customer Success Day CVP for Business Applications & Platform, Charles Lamanna, shares the latest #BusinessApplications product enhancements and updates to help customers achieve their business outcomes.     S01E13 Power Platform Connections - 12pm PST - Thursday 11th May Episode Thirteen of Power Platform Connections sees Hugo Bernier take a deep dive into the mind of co-host David Warner II, alongside the reviewing the great work of Dennis Goedegebuure, Keith Atherton, Michael Megel, Cat Schneider, and more. Click below to subscribe and get notified, with David and Hugo LIVE in the YouTube chat from 12pm PST. And use the hashtag #PowerPlatformConnects on social media for a chance to have your work featured on the show.     UPCOMING EVENTS   European Power Platform Conference - early bird ticket sale ends! The European Power Platform Conference early bird ticket sale ends on Friday 12th May 2023! #EPPC23 brings together the Microsoft Power Platform Communities for three days of unrivaled days in-person learning, connections and inspiration, featuring three inspirational keynotes, six expert full-day tutorials, and over eighty-five specialist sessions, with guest speakers including April Dunnam, Dona Sarkar, Ilya Fainberg, Janet Robb, Daniel Laskewitz, Rui Santos, Jens Christian Schrøder, Marco Rocca, and many more. Deep dive into the latest product advancements as you hear from some of the brightest minds in the #PowerApps space. Click here to book your ticket today and save!      DynamicMinds Conference - Slovenia - 22-24th May 2023 It's not long now until the DynamicsMinds Conference, which takes place in Slovenia on 22nd - 24th May, 2023 - where brilliant minds meet, mingle & share! This great Power Platform and Dynamics 365 Conference features a whole host of amazing speakers, including the likes of Georg Glantschnig, Dona Sarkar, Tommy Skaue, Monique Hayward, Aleksandar Totovic, Rachel Profitt, Aurélien CLERE, Ana Inés Urrutia de Souza, Luca Pellegrini, Bostjan Golob, Shannon Mullins, Elena Baeva, Ivan Ficko, Guro Faller, Vivian Voss, Andrew Bibby, Tricia Sinclair, Roger Gilchrist, Sara Lagerquist, Steve Mordue, and many more. Click here: DynamicsMinds Conference for more info on what is sure an amazing community conference covering all aspects of Power Platform and beyond.    Days of Knowledge Conference in Denmark - 1-2nd June 2023 Check out 'Days of Knowledge', a Directions 4 Partners conference on 1st-2nd June in Odense, Denmark, which focuses on educating employees, sharing knowledge and upgrading Business Central professionals. This fantastic two-day conference offers a combination of training sessions and workshops - all with Business Central and related products as the main topic. There's a great list of industry experts sharing their knowledge, including Iona V., Bert Verbeek, Liza Juhlin, Douglas Romão, Carolina Edvinsson, Kim Dalsgaard Christensen, Inga Sartauskaite, Peik Bech-Andersen, Shannon Mullins, James Crowter, Mona Borksted Nielsen, Renato Fajdiga, Vivian Voss, Sven Noomen, Paulien Buskens, Andri Már Helgason, Kayleen Hannigan, Freddy Kristiansen, Signe Agerbo, Luc van Vugt, and many more. If you want to meet industry experts, gain an advantage in the SMB-market, and acquire new knowledge about Microsoft Dynamics Business Central, click here Days of Knowledge Conference in Denmark to buy your ticket 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, @LaurensM  @BCBuizer  Community Users:  @Amik@ @mmollet, @Cr1t    Power Automate:  Super Users: @Expiscornovus , @grantjenkins, @abm  Community Users: @Nived_Nambiar, @ManishSolanki    Power Virtual Agents:  Super Users: @Pstork1, @Expiscornovus  Community Users: @JoseA, @fernandosilva, @angerfire1213    Power Pages: Super Users: @ragavanrajan  Community Users: @Fubar, @Madhankumar_L,@gospa  LATEST COMMUNITY 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 

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

Top Solution Authors
Top Kudoed Authors
Users online (4,197)