I'm not a database person so I don't know what the traditional data design pattern is for this problem, but here goes.
How do I approach this better WITH REPORTING IN MIND? Its getting unruly to maintain.
Thanks
Solved! Go to Solution.
Hi ericonline,
I'm no specialist either, but this can get quite complicated to explain so I'll try keep is as simple as possible.
Databases help us to relate data - meaning when you have a one-to-many relationship between entities, it's usually better to keep the "one" in one table and reference it in the "many" table. This helps segment and manage your entities and avoid 300-column tables.
I consider entities to be a 'category' - so in your example the entities would be Events, Photos and possibly Comments
When entity fields (columns in the table) have a one-to-one relationship, then it's probably better to keep the data together in the same table. Sometimes you have nested one-to-many relationships, which also complicate matters...
So to illustrate this, I'll try work through a simplified example - it might not be identical to your use case, but it's the concept we're trying to understand here;
Based on the above, I would construct my database as follows;
One Event Table
One EventPhotos Table
One PhotoComments Table
Because we often use SharePoint Lists as our tables, you can just replace "Table" for "List" wherever you see it here - the construct is the same - an entity that has columns and rows.
My Event table would have just these Columns
[ID], EventTitle, EventDuration, EventLocation
Where [ID] is a unique reference column in that Table for that row of data. I've put it in square brackets here because when you're using SharePoint, you don't need to create this column - SharePoint creates it for you. Every single List has an ID column that is unique for every single row of data.
This unique reference is what you use to link data in other tables to this event and is typically referred to as a Primary Key, meaning the key that identifies data in this table.
If you don't see it in your list, it's just hidden - go into the view settings for the list and tick the ID column 🙂
While it's generated automatically and consecutively, it doesn't need to be consecutive - it just needs all the values in the column to be unique.
Now, for photos, comments or any other data that might be linked to the event you would then build a table that logically groups that particular data;
EventPhotos Table:
[ID], PhotoURL, Name, TakenBy, TakenDate, EventID
Where EventID is the value of the Primary Key column of the Event in the Event Table I want to link that photo to. I have to create this column, and I have to put the data in. The idea here is that when I upload Photo's, I should already know which event those Photo's belong to, so I can put that Events [ID] number into this column. This is referred to as a Foreign Key, meaning data that can identify data in another table.
You would then do the same process for the PhotoComments table, except here it's the one Photo you want to link to - so here you need the Photo's [ID] to link comments.
It's important to do this as you create the data - trying to link stuff afterwards will require quite a bit of filtering and manual updates. If you have one big table, you would need to either start again, or manually pull the data out and put it into it's separate tables, updating the foreign keys as you do - quite an exercise.
Lastly, with reporting in mind I have two words for you - Power BI
With it you can ues the same techniques to relate data from different tables.- and it can easily connect to SharePoint lists as well as autorefresh data it gets from them - but that's a post for the Power BI community 🙂
All of this is quite hard to explain with just text, hopefully this image will help;
So for the above, if I have an Gallery in PowerApps named 'eventGallery' with EventTable as Items, I could then have a second gallery with
Filter(EventPhotos, EventID=eventGallery.Selected.ID)
as Items. This will populate my second gallery with all the photos linked to whichever event is selected in the first gallery.
This approach allows me to fetch all the data related to a specific event from various places and present it on the same screen.
Hope this helps 🙂
RT
Hi seadude,
I'm definitely no DB designer, so calling my process a workflow is a little insulting to workflows! 🙂
I'm pretty lazy, and nowhere near as structured as I should be. I tend to build on the fly, which is admittedly not the best practice and has gotten me into some tight corners where I've had to redesign.
This is an area I should also work on for better apps - I can share my approach, but it's by no means the best, or even a good approach - that's my disclaimer done with!
Designing for me is about finding the right balance between categorising data into logical groups or entities while keeping the number of lookups (joins) between them to the absolute minimum required - then it's about performance, like indexing the columns you're likely to use most for filtering or lookups and using as flat as possible column types - like plain text or number. This is especially important for delegation limitations and list view thresholds on SharePoint lists when using PowerApps.
It's useful to know what data you need 'at rest' vs what you can derive efficiently at 'runtime'.
For example, person/group columns in SharePoint are a great integration for identifying AD users, but you actually just need the email address of the user to get more profile data in your app using something like the Office365Users connector.
Filtering on a person/group column from PowerApps always used to cause delegation issues for me, but filtering on an indexed plain text "userEmail" column that you populate yourself is far easier.
I also stay away from complicated columns like choice and lookups in SharePoint - just personal preference, as I prefer to use PowerApps to define and manage user choices and/or data lookups.
For design and planning, I usually start with pen and paper (or draw in OneNote). I start with the basic functions of the app, get an idea of the screens, then drop down to required data sources and outline the entities and their relationships - from there, Excel for quick concepts and dummy data creation, MS Access for more specific table linking visualisation.
The nice thing about using Excel or Access with SharePoint is that you can easily export your tables to SharePoint Lists once you've built them. There are a few drawbacks to using this method though - this is a once-off export which creates the list - I haven't seen a way to update a list from excel without using Flow.
Excel is also not great for showing relationships, but MS Access has a great visualisation view for relating and linking tables.
If you're using SQL, the database designer also has a good design view, but this might be overkill.
Power BI desktop has a similar visualisation capability, but it's more predisposed to having tables with data already available that you can then link, as opposed to designing from scratch. For something more complicated you could check online for free design tools like SQLdbm (I'm sure there are plenty of others), but I can't speak to usability or exportability there.
Other people on this forum likely have much more efficient and structured approaches than I do, so I'd love to see their responses - (I'm looking at you @mr-dang ;)) but in the end it comes down to what works for you and your particular app/data
Hope this helps, and watching this thread with interest 🙂
RT
Hi ericonline,
I'm no specialist either, but this can get quite complicated to explain so I'll try keep is as simple as possible.
Databases help us to relate data - meaning when you have a one-to-many relationship between entities, it's usually better to keep the "one" in one table and reference it in the "many" table. This helps segment and manage your entities and avoid 300-column tables.
I consider entities to be a 'category' - so in your example the entities would be Events, Photos and possibly Comments
When entity fields (columns in the table) have a one-to-one relationship, then it's probably better to keep the data together in the same table. Sometimes you have nested one-to-many relationships, which also complicate matters...
So to illustrate this, I'll try work through a simplified example - it might not be identical to your use case, but it's the concept we're trying to understand here;
Based on the above, I would construct my database as follows;
One Event Table
One EventPhotos Table
One PhotoComments Table
Because we often use SharePoint Lists as our tables, you can just replace "Table" for "List" wherever you see it here - the construct is the same - an entity that has columns and rows.
My Event table would have just these Columns
[ID], EventTitle, EventDuration, EventLocation
Where [ID] is a unique reference column in that Table for that row of data. I've put it in square brackets here because when you're using SharePoint, you don't need to create this column - SharePoint creates it for you. Every single List has an ID column that is unique for every single row of data.
This unique reference is what you use to link data in other tables to this event and is typically referred to as a Primary Key, meaning the key that identifies data in this table.
If you don't see it in your list, it's just hidden - go into the view settings for the list and tick the ID column 🙂
While it's generated automatically and consecutively, it doesn't need to be consecutive - it just needs all the values in the column to be unique.
Now, for photos, comments or any other data that might be linked to the event you would then build a table that logically groups that particular data;
EventPhotos Table:
[ID], PhotoURL, Name, TakenBy, TakenDate, EventID
Where EventID is the value of the Primary Key column of the Event in the Event Table I want to link that photo to. I have to create this column, and I have to put the data in. The idea here is that when I upload Photo's, I should already know which event those Photo's belong to, so I can put that Events [ID] number into this column. This is referred to as a Foreign Key, meaning data that can identify data in another table.
You would then do the same process for the PhotoComments table, except here it's the one Photo you want to link to - so here you need the Photo's [ID] to link comments.
It's important to do this as you create the data - trying to link stuff afterwards will require quite a bit of filtering and manual updates. If you have one big table, you would need to either start again, or manually pull the data out and put it into it's separate tables, updating the foreign keys as you do - quite an exercise.
Lastly, with reporting in mind I have two words for you - Power BI
With it you can ues the same techniques to relate data from different tables.- and it can easily connect to SharePoint lists as well as autorefresh data it gets from them - but that's a post for the Power BI community 🙂
All of this is quite hard to explain with just text, hopefully this image will help;
So for the above, if I have an Gallery in PowerApps named 'eventGallery' with EventTable as Items, I could then have a second gallery with
Filter(EventPhotos, EventID=eventGallery.Selected.ID)
as Items. This will populate my second gallery with all the photos linked to whichever event is selected in the first gallery.
This approach allows me to fetch all the data related to a specific event from various places and present it on the same screen.
Hope this helps 🙂
RT
Great write up and explanation @RusselThomas! This is exactly what I was looking for (this is @ericonline's non-work persona 🙂 ) Looks like I have to dust off my old SQL notes and get into 1st Normal, 2nd Normal, etc!
How are you mocking up your data relationships (the table images) for Sharepoint? In Excel then screenshot or some Visio stencils? I'd like to approach this part of app building more formally and it really looks like you have a lead on this. Care to share your workflow for building data tables?
Hi seadude,
I'm definitely no DB designer, so calling my process a workflow is a little insulting to workflows! 🙂
I'm pretty lazy, and nowhere near as structured as I should be. I tend to build on the fly, which is admittedly not the best practice and has gotten me into some tight corners where I've had to redesign.
This is an area I should also work on for better apps - I can share my approach, but it's by no means the best, or even a good approach - that's my disclaimer done with!
Designing for me is about finding the right balance between categorising data into logical groups or entities while keeping the number of lookups (joins) between them to the absolute minimum required - then it's about performance, like indexing the columns you're likely to use most for filtering or lookups and using as flat as possible column types - like plain text or number. This is especially important for delegation limitations and list view thresholds on SharePoint lists when using PowerApps.
It's useful to know what data you need 'at rest' vs what you can derive efficiently at 'runtime'.
For example, person/group columns in SharePoint are a great integration for identifying AD users, but you actually just need the email address of the user to get more profile data in your app using something like the Office365Users connector.
Filtering on a person/group column from PowerApps always used to cause delegation issues for me, but filtering on an indexed plain text "userEmail" column that you populate yourself is far easier.
I also stay away from complicated columns like choice and lookups in SharePoint - just personal preference, as I prefer to use PowerApps to define and manage user choices and/or data lookups.
For design and planning, I usually start with pen and paper (or draw in OneNote). I start with the basic functions of the app, get an idea of the screens, then drop down to required data sources and outline the entities and their relationships - from there, Excel for quick concepts and dummy data creation, MS Access for more specific table linking visualisation.
The nice thing about using Excel or Access with SharePoint is that you can easily export your tables to SharePoint Lists once you've built them. There are a few drawbacks to using this method though - this is a once-off export which creates the list - I haven't seen a way to update a list from excel without using Flow.
Excel is also not great for showing relationships, but MS Access has a great visualisation view for relating and linking tables.
If you're using SQL, the database designer also has a good design view, but this might be overkill.
Power BI desktop has a similar visualisation capability, but it's more predisposed to having tables with data already available that you can then link, as opposed to designing from scratch. For something more complicated you could check online for free design tools like SQLdbm (I'm sure there are plenty of others), but I can't speak to usability or exportability there.
Other people on this forum likely have much more efficient and structured approaches than I do, so I'd love to see their responses - (I'm looking at you @mr-dang ;)) but in the end it comes down to what works for you and your particular app/data
Hope this helps, and watching this thread with interest 🙂
RT
I'm in the same boat, PowerApps off-the-cuff, everytime. I like the term "canvas" app because I feel like an artist when building! Unfortunately, like you mentioned, this can sometimes lead to rework further down the road.
I'll look into using the Access table tool (I think I have Access) and at the least, work with Excel to model my data out a bit more. I really appreciate the insights and look forward to working with you in the forums as time goes on.
Chat soon
Just jumped into Access 2016 Desktop app to mess around with designing tables and data relationships. I do believe this will take my PowerApps to the next level. This IS indeed a nice tool.
(Hint: Click "Database Tools" / "Relationships" or / "Database Documenter" to get creative!)
Yep, used to use Access to design way back before SQL got it's own designer - still love it 🙂
Hi @RusselThomas,
Actively referring to this conversation here and have another question for you.
Example:
I'm trying apply what you wrote above, but I can't seem to get away from having a column with multiple values in each cell. This is tough to parse and VERY tough to write to. Am I missing something or is this a tough thing to do with Sharepoint lists in general?
Thanks for your time!
If I may be so bold, I'll offer my take on the many-to-many. In SQL, I would make a table that has three items: a primary key (ID), a foreign key reference for the event ID, and a foreign key reference for the volunteer ID. That way, you could tie events to any number of volunteers and any number of events to each volunteer. Example:
Events Table:
ID Event Date
1 Bowling 2018-08-21
2 Fishing 2018-09-25
3 Curling 2018-10-23
Volunteers Table:
ID Name
1 Bill
2 Ted
3 Rufus
EventVolunteers Table:
ID EventID VolunteerID
1 1 1
2 1 2
3 2 1
4 2 2
5 3 1
6 3 2
7 3 3
In the EventVolunteers table, we see that Bill and Ted go Bowling (Volunteer ID's 1 & 2 with Event ID 1) and Fishing (Volunteer ID's 1 & 2 with Event ID 2), but for Curling they take Rufus along (Volunteer ID's 1, 2, & 3 with Event ID 3). Many Events, many Volunteers, able to be filtered by either column to check Events to Volunteers or Volunteers to Events.
To use @RusselThomas 's first example, it would be like if you made a table with just the yellow highlighted columns and an auto-generated ID column.
I don't know SharePoint that well, so I don't know if you can do those types of relationships or how it handles them, but with SQL it isn't bad at all. I would imagine that you could create a pseudo-connecting table by using a PowerApp to write the ID's as integers to a list in SharePoint that has an auto-generated ID and then use PowerApps/PowerBI to reference them with filtering. They may not be formally connected, but it could work in a pinch. Problems may arise if you delete Volunteers or Events that have IDs in the EventVolunteers table, leaving them orphaned. SQL has ways to deal with this but I don't know about SharePoint. The pseudo-connecting table idea would have to be dealt with manually or using PowerApps to look for the orphaned keys and remove them.
Forgive the intrusion but hopefully this is relevant.
@wyotim's response is what I would have said - I call it a sandwich table, I think it's actually called a junction table, so another way of looking at his example;
Events:
[ID], Event, Date
Volunteers:
[ID], Name, Surname, Phone Number
EventVolunteers:
[ID], EventID, VolunteerID
Then it's really a matter of what you're trying to show in which control and how you want to show it that will determine your filter/lookup commands.
Kind regards,
RT
Episode Fourteen of Power Platform Connections sees David Warner and Hugo Bernier talk to Microsoft PM Jocelyn Panchal, alongside the latest news, videos, product reviews, 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: 00:00 Cold Open 00:32 Show Intro 01:10 Jocelyn Panchal Interview 24:10 Blogs & Articles 29:50 Outro & Bloopers Check out the blogs and articles featured in this week’s episode: https://www.nathalieleenders.com/Blog/index.php/;focus=STRATP_com_cm4all_wdn_Flatpress_42136159&path=?x=entry:entry230511-101930#C_STRATP_com_cm4all_wdn_Flatpress_42136159__-anchor @NathLeenders https://www.keithatherton.com/posts/2023-05-12-msbuild2023-cloud-skills-challenge/ @MrKeithAtherton https://elliskarim.com/2023/05/13/how-to-find-files-in-onedrive-that-match-a-naming-pattern/ @MrCaptainKarim https://www.linkedin.com/pulse/my-fond-memories-scottish-summit-2022-pranav-khurana/ @pranavkhuranauk https://www.linkedin.com/feed/update/urn:li:activity:7061777660745560064/?updateEntityUrn=urn%3Ali%3Afs_feedUpdate%3A%28V2%2Curn%3Ali%3Aactivity%3A7061777660745560064%29 @thevictordantas 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 18th May 2023. Video series available at Power Platform Community YouTube channel. Upcoming events: 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.
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
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/
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! 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
User | Count |
---|---|
166 | |
73 | |
58 | |
46 | |
41 |
User | Count |
---|---|
236 | |
112 | |
105 | |
74 | |
68 |