cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
BenDonahue
Impactful Individual
Impactful Individual

Using ForAll(Filter(...., ....), Collect(......, Filter(...., ....)))

The Code

 

ForAll(Filter(colChartQGroup, ChartKey = varRecord.ChartKey), Collect(colQuestions, Filter(colQuestionsList, QGroupKey = QGroupKey)));

 

This code is being used to populate the Items property of a gallery.

 

The Tables
colChartQgroup

colChartQgroup is a pivot table where ChartKey values appear more than once. 
In that same row/record, there is a column QGroupKey. QGroupKey values are not repeatedly associated with the same ChartKey (Dunno how important that last fact is)

colQuestionsList
colQuestionsList is a static table that contains all the questions. a column in that table is QGroup. This denotes that the question on that row is a part of a particular QGroup.

 

The Goal

Based on the result of the first filter, Filter(colChartQGroup, ChartKey = varRecord.ChartKey), I want to, row-by-row , access the QGroupKey, use that value to filter the questions in colQuestionslList for only that QGroup value, and append all those questions to the collection colQuestions.

 

The Problem (as I see it, anyway)

When it comes to the final filter, how do I differentiate between the two QGrou[pKey columns such that they come from different tables? The following code does not work, but it may illustrate to a human what I am talking about:

 

ForAll(Filter(colChartQGroup, ChartKey = varRecord.ChartKey), Collect(colQuestions, Filter(colQuestionsList, colChartQGroup.QGroupKey = colQuestionsList.QGroupKey)));

 


The Thanks

Thank you for your help in this. As usual, this seems simple, but the solution is elusive, and I appreciate you and your assistance.

1 ACCEPTED SOLUTION

Accepted Solutions
RandyHayes
Super User
Super User

@BenDonahue 

You look like you're taking a development approach to this - that will be a source of confusion as PowerApps is not a development platform.

 

Consider the following for your Items property of the Gallery:

AddColumns(
    Filter(colChartQGroup, ChartKey = varRecord.ChartKey),
    "questionList", Filter(colQuestionsList, QGroupKey = QGroupKey)
)

This will give you a table with all of the filtered groups and then a column that will contain all of the questions associated with that.

 

Beyond that, I would consider as well getting rid of the collections and variables as much as possible and going directly to your datasources and the solutions will flow much more easily and the app will work much better.

 

I hope this is helpful for you.

 

 

_____________________________________________________________________________________
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!

View solution in original post

11 REPLIES 11
RandyHayes
Super User
Super User

@BenDonahue 

You look like you're taking a development approach to this - that will be a source of confusion as PowerApps is not a development platform.

 

Consider the following for your Items property of the Gallery:

AddColumns(
    Filter(colChartQGroup, ChartKey = varRecord.ChartKey),
    "questionList", Filter(colQuestionsList, QGroupKey = QGroupKey)
)

This will give you a table with all of the filtered groups and then a column that will contain all of the questions associated with that.

 

Beyond that, I would consider as well getting rid of the collections and variables as much as possible and going directly to your datasources and the solutions will flow much more easily and the app will work much better.

 

I hope this is helpful for you.

 

 

_____________________________________________________________________________________
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!
BenDonahue
Impactful Individual
Impactful Individual

@RandyHayes ,

Neat! I like it. There is something about nested tables that is both elegant and, for some reason, a little daunting. This will, with a little finagling to access the currently pertinent table (which is controlled by the user through another control, in my case a gallery, work perfectly for me.

 

Thank you very much, yet again, Mr. Hayes!

 

(You bring up some very interesting topics I have been wondering about but haven't yet asked. As they are new topics, I will post them separately and flag you.)

 

 

BenDonahue
Impactful Individual
Impactful Individual

@RandyHayes ,
I ran into a little snafu I really don't understand.

 

I customized your code such that it returned one table, the one containing the QGroup questions I need to display currently, like so:

 

Filter(AddColumns(
    Filter(colChartQGroup, ChartKey = varRecord.ChartKey),
    "questionList", Filter(colQuestions, QGroupKey = QGroupKey)
), QGroupKey = varQGroupRecord.QGroupKey).questionList

 

BenDonahue_0-1619795257949.png

As this table is in the Items property of a gallery, I expected to be able to access all the columns in the gallery to populate my templates with a simple 

ThisItem.Q

I could not. So I tried this:

ThisItem.questionList.Q

which produced this error (notice that Q is a valid property of questionList):

BenDonahue_1-1619795984859.png

 

What am I missing? How do I access the data?

@BenDonahue 

(response to first response)

Yes, these are not technically nested tables, they are columns with table values.  So perhaps that distinction would help some in the thought process.

As for other questions...yes, please do ask.  Get the stuff right in your mind and learn the proper way to do things is key to success.  There is way too much "bad" information out there that people are learning and it is frustrating to see.  So, I'm always happy to answer when I can.

 

(response to second response)

So, let's get the current formula cleaned up a bit.  I need to know a little more on the origins of the snapshot variables.  How and where are varRecord, colChartQGroup, colQuestions, and varQGroupRecord defined?

 

_____________________________________________________________________________________
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!
BenDonahue
Impactful Individual
Impactful Individual

Outstanding, thank you, @RandyHayes . Forums are fantastic for getting specific problems solved, but tend not to handle strategic or best practices situations very well, I have found.  Thank you for being receptive to such questions.

 

colChartQGroup

colQuestions

colChartQGroup and colQuestions are defined in OnStart as their counterparts in a SharePointlist, CCAChartQGroup and CCAQuestions. As these will not change in the course of using the app, I did this for performance reasons only.

 

varRecord

The first screen the user sees has a curated list of their assignments, listed in a gallery. OnSelect of a button in the template of the assignment they want to address in the gallery is:

Set(varRecord, ThisItem);
Navigate('Chart Auditor Audits Chart',ScreenTransition.CoverRight);

The columns in varRecord include ChartKey.

varQGroupRecord

varQGroupRecord is defined in the gallery on the same screen that the questions gallery appears, and is used to select the QGroup the user is currently addressing:

BenDonahue_0-1619798189367.png

The current code for the Items in the Question gallery is:

Filter(colQuestions,  QGroupKey = varQGroupRecord.QGroupKey)

//Filter(AddColumns(
//    Filter(colChartQGroup, ChartKey = varRecord.ChartKey),
//    "questionList", Filter(colQuestions, QGroupKey = QGroupKey)
//), QGroupKey = varQGroupRecord.QGroupKey).questionList

Here is the screen showing both of the galleries:

BenDonahue_1-1619798873688.png

 

In my current approach, which may not be a best practices approach, is producing promising, if not perfect, results. Selecting "Clinical Documentation" or "Well Child Visit" displays the correct QGroup in the Question gallery. The only issues I have are, when saving the data, I am saving all the questions and not just the QGroups pertinent to this chart, leading to many rows of empty data. 

 

I could check, in the ForAll() if there is data in the Answer column, and conditionally Patch that row, but I felt that  doing so would not adhere to best practices; I felt it would be better to filter for only the QGroups required. 

RandyHayes
Super User
Super User

@BenDonahue 

Yes, I know that a lot of forum responses are "drive-by", shoot and go.  I do try to emphasize best practices and strategies (as I see a lot that are just bad off the bat).  I want people to adopt this platform and grow it.  If there is a lot of misunderstanding and frustration, people will give up on it and consider it not working.  

 

So, to go down your list.

You're actually causing performance problems by collecting colChartQGroup and colQuestions in your OnStart.  PowerApps retrieves information from the Datasource only when it doesn't have it.  So, if you reference the datasource directly rather than a collection, PowerApps will get the data as it needs it.  If you put in a collection to get it all, then you are forcing PowerApps to get all the data at once.  This is a hit on start up.

A DataSource is not a lot different from a Collection, except that it "ties" to the session tables (the ones that get created when you start the app in the cloud).  So, the session table is a copy of the real datasource (up to record limit).  The datasource is a blank table with the schema of the real data.  It gets filled on-demand.  Eventually, if all records are requested, then it is a duplicate of the data in the session table and the real data source.

If you add a collection, you are just causing the app to have to forcefully get all the data again and then duplicate it YET another time.

Also, a collection is a special type of Table.  It is just a table but it has the ability to add or remove rows to it.  If you don't need to do that (as in the case of your Static data) then skip the collection and just assign to a variable (again, if for some reason you need to force a fill of ALL of the data rather than on-demand).

 

As for varRecord, this is acceptable use of a variable, but it is a snapshot at that time.  The gallery has a .Selected property which is the record that is selected...ThisItem  You can rely on the .Selected as long as your Items property of the Gallery is not complex (this is another story on Items property and the .Selected that I will skip for the moment).

 

I'm not exactly following where you are setting the varQGroupRecord from what you showed, but I assume it is getting you what you need.

 

As for saving, your save should be based off of the Gallery that has the questions in it.  The Items of that Gallery should be based on a filter of the datasource for the questions you want to display based on the first Gallery selected record and the question group.

 

Once that is in place, then your save is essentially (not verbatim):

Patch(yourDataSource, ForAll(Filter(yourGallery.AllItems, !IsBlank(answer.Text)) As _item, Patch(_item, {answerColumn: _item.answer.Text})))

 

So, if your question/answer gallery is only comprised of the questions in need, then the record update/patch will occur just on them.

 

Speaking of best practices - Keep in mind that a ForAll is not a For/Loop, it is a function that returns a table.  I see WAY too often that people look at it as a programming for/loop, and performance suffers.

 

 

 

_____________________________________________________________________________________
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!
BenDonahue
Impactful Individual
Impactful Individual

Wow. Very informative, to be sure, thank you. With development training, this is my first job and Power Platform is my assignment to master and through which I need to shine, which makes me a huge supporter of it and of its general acceptance and support.

 

varGroupRecord is set here; QGroup is one if the columns passed in this single record. This value of QGroup is what is used to filter the colQuestions, which is the entirety of the Questions table. So, I can successfully display in the Questions gallery only the questions of the selected QGroup, which, again, is set by selecting "Clinical Documentation" in the mini-gallery in the bottom left of the screen:

BenDonahue_0-1619811111567.png

BenDonahue_1-1619811290730.png

 

The problem is, I still have all the questions from all QGroups stored in colQuestions. This list can grow and grow over time. What I want is a collection of just the questions relating to the QGroups; having those listed in one table would be convenient for Patching purposes.

 

In pseudo code, what I want kind of looks like this:

Filter(colQuestions, QGroup = (any of the values in a column, QGroup, of a pivot table). There may be 1, 2 3 or more matching values

 

colQuestions 

Question             QGroupKey

who?                     1

Where?                 2

why?                     1

How?                    3

 

colChartQGroup

ChartKey       QGroupKey

1                     1

1                     2
2                     1

2                     3

3                     1

3                     2

 

Result desired for chart 1:

colQList

Question

who?
why?

Where?


From there, I can add the Answer column and record the results....pretty sure.

 

Leaving work for the day; I'll get some of those other questions posted soon, likely over the weekend. Speaking of which, have a great one and Thank you, sincerely, for your help, @RandyHayes.

RandyHayes
Super User
Super User

@BenDonahue 

Yep...stick with it and please keep telling yourself this is Excel.  In Excel you don't set variables for things, you reference the cells.  In Excel you don't collect data you reference it (inserted data sources).  So, stick with that and you will Master PowerApps in no time.  The more you go down a "development" concept, the harder it is and the more frustrating it will be.  This is years of PowerApps experience coming from a .Net development background. Once I threw all the "development" baggage out, it because 1000% easier to understand what is going on.

 

Now, on to the issues.  So, again, you are talking about collections for the colQuestions.  Ditch the collection concept, you're only going to have to do extra work to constantly update that with information based on the filtering, etc.  Each time you do, you have to do it somewhere, and then you'll just be wasting app time because you're just making another copy of data you already have.

 

Your Gallery IS a table!  Once you provide it with Items, you have a table that you will use for patching/updating.  The Gallery has a table with a copy of the data it needs.  There is no need to create yet another collection with duplicated data again.

 

As I see it in your picture, the Question Group gallery in your screen is what will set off the proper filter of questions in your answer gallery.  You seem to indicate that this is working.  The only change I would make there is to get rid of the collection for it as you don't need it.

 

In my last reply, I mentioned the formula that is needed to patch/update the records associated with the gallery items.  It is all you need.  A collection is not utilized in any way for that and only adds a level of complexity and performance hits.

 

What is the Items property of the minigallery with the Question group? And if it is another collection only, what is the definition of that collection?

 

Happy to help, and hopefully you're getting more than just a "drive-by" answer here on this forum today! 😁

I'll be looking for your questions and responses. 

Have a great weekend as well.

 

 

_____________________________________________________________________________________
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!
BenDonahue
Impactful Individual
Impactful Individual

@RandyHayes 
I had a bit of an epiphany that lead to a day of straight coding, with very few pauses.

 

I think I (finally) get what you mean when you say that this is Excel, not a scripting language. Everything happens at once, an there is not before or after,not really, even though ForAll might look like it. It came to me when I realized that there is no "re-render" ... as I was making changes in the code, changes just happened on my screen. This was completely lost on me until today. Though I can't really say precisely how that changed my approach, in specifics (and I've had 9 hours of straight and furious advancement in my project, so am a bit frazzled), I can say that I made INCREDIBLE headway with my new mindset.

 

(At least for now),) I get it!!

 

At some point I'd still like to filter a collection based on a dynamically populated array, which would help shorten my collection list, I will not be reaching 2000 rows of questions for another 5 years, at the very earliest, so Ithink I'm good for now.

 

Filter(colCollection, ColumnA = any value in ArrayY)

or

Filter(colCollection, Contains(ColumnA, any value in ArrayY)

, or somethign like that.

 

Thank you for giving me the fish and for teaching me to fish....and for showing me how water works.

Helpful resources

Announcements

April 4th Copilot Studio Coffee Chat | Recording Now Available

Did you miss the Copilot Studio Coffee Chat on April 4th? This exciting and informative session with Dewain Robinson and Gary Pretty is now available to watch in our Community Galleries!   This AMA discussed how Copilot Studio is using the conversational AI-powered technology to aid and assist in the building of chatbots. Dewain is a Principal Program Manager with Copilot Studio. Gary is a Principal Program Manager with Copilot Studio and Conversational AI. Both of them had great insights to share with the community and answered some very interesting questions!     As part of our ongoing Coffee Chat AMA series, this engaging session gives the Community the unique opportunity to learn more about the latest Power Platform Copilot plans, where we’ll focus, and gain insight into upcoming features. We’re looking forward to hearing from the community at the next AMA, so hang on to your questions!   Watch the recording in the Gallery today: April 4th Copilot Studio Coffee Chat AMA

Tuesday Tip: Subscriptions & Notifications

TUESDAY TIPS are our way of communicating helpful things we've learned or shared that have helped members of the Community. Whether you're just getting started or you're a seasoned pro, Tuesday Tips will help you know where to go, what to look for, and navigate your way through the ever-growing--and ever-changing--world of the Power Platform Community! We cover basics about the Community, provide a few "insider tips" to make your experience even better, and share best practices gleaned from our most active community members and Super Users.   With so many new Community members joining us each week, we'll also review a few of our "best practices" so you know just "how" the Community works, so make sure to watch the News & Announcements each week for the latest and greatest Tuesday Tips!   This Week: All About Subscriptions & Notifications We don't want you to a miss a thing in the Community! The best way to make sure you know what's going on in the News & Announcements, to blogs you follow, or forums and galleries you're interested in is to subscribe! These subscriptions ensure you receive automated messages about the most recent posts and replies. Even better, there are multiple ways you can subscribe to content and boards in the community! (Please note: if you have created an AAD (Azure Active Directory) account you won't be able to receive e-mail notifications.)   Subscribing to a Category  When you're looking at the entire category, select from the Options drop down and choose Subscribe.     You can then choose to Subscribe to all of the boards or select only the boards you want to receive notifications. When you're satisfied with your choices, click Save.   Subscribing to a Topic You can also subscribe to a single topic by clicking Subscribe from the Options drop down menu, while you are viewing the topic or in the General board overview, respectively.     Subscribing to a Label Find the labels at the bottom left of a post.From a particular post with a label, click on the label to filter by that label. This opens a window containing a list of posts with the label you have selected. Click Subscribe.           Note: You can only subscribe to a label at the board level. If you subscribe to a label named 'Copilot' at board #1, it will not automatically subscribe you to an identically named label at board #2. You will have to subscribe twice, once at each board.   Bookmarks Just like you can subscribe to topics and categories, you can also bookmark topics and boards from the same menus! Simply go to the Topic Options drop down menu to bookmark a topic or the Options drop down to bookmark a board. The difference between subscribing and bookmarking is that subscriptions provide you with notifications, whereas bookmarks provide you a static way of easily accessing your favorite boards from the My subscriptions area.   Managing & Viewing Your Subscriptions & Bookmarks To manage your subscriptions, click on your avatar and select My subscriptions from the drop-down menu.     From the Subscriptions & Notifications tab, you can manage your subscriptions, including your e-mail subscription options, your bookmarks, your notification settings, and your email notification format.     You can see a list of all your subscriptions and bookmarks and choose which ones to delete, either individually or in bulk, by checking multiple boxes.     A Note on Following Friends on Mobile Adding someone as a friend or selecting Follow in the mobile view does not allow you to subscribe to their activity feed. You will merely be able to see your friends’ biography, other personal information, or online status, and send messages more quickly by choosing who to send the message to from a list, as opposed to having to search by username.

Monthly Community User Group Update | April 2024

The monthly Community User Group Update is your resource for discovering User Group meetings and events happening around the world (and virtually), welcoming new User Groups to our Community, and more! Our amazing Community User Groups are an important part of the Power Platform Community, with more than 700 Community User Groups worldwide, we know they're a great way to engage personally, while giving our members a place to learn and grow together.   This month, we welcome 3 new User Groups in India, Wales, and Germany, and feature 8 User Group Events across Power Platform and Dynamics 365. Find out more below. New Power Platform User Groups   Power Platform Innovators (India) About: Our aim is to foster a collaborative environment where we can share upcoming Power Platform events, best practices, and valuable content related to Power Platform. Whether you’re a seasoned expert or a newcomer looking to learn, this group is for you. Let’s empower each other to achieve more with Power Platform. Join us in shaping the future of digital transformation!   Power Platform User Group (Wales) About: A Power Platform User Group in Wales (predominantly based in Cardiff but will look to hold sessions around Wales) to establish a community to share learnings and experience in all parts of the platform.   Power Platform User Group (Hannover) About: This group is for anyone who works with the services of Microsoft Power Platform or wants to learn more about it and no-code/low-code. And, of course, Microsoft Copilot application in the Power Platform.   New Dynamics365 User Groups   Ellucian CRM Recruit UK (United Kingdom) About: A group for United Kingdom universities using Ellucian CRM Recruit to manage their admissions process, to share good practice and resolve issues.    Business Central Mexico (Mexico City) About:  A place to find documentation, learning resources, and events focused on user needs in Mexico. We meet to discuss and answer questions about the current features in the standard localization that Microsoft provides, and what you only find in third-party locations. In addition, we focus on what's planned for new standard versions, recent legislation requirements, and more. Let's work together to drive request votes for Microsoft for features that aren't currently found—but are indispensable.   Dynamics 365 F&O User Group (Dublin) About: The Dynamics 365 F&O User Group - Ireland Chapter meets up in person at least twice yearly in One Microsoft Place Dublin for users to have the opportunity to have conversations on mutual topics, find out what’s new and on the Dynamics 365 FinOps Product Roadmap, get insights from customer and partner experiences, and access to Microsoft subject matter expertise.  Upcoming Power Platform Events    PAK Time (Power Apps Kwentuhan) 2024 #6 (Phillipines, Online) This is a continuation session of Custom API. Sir Jun Miano will be sharing firsthand experience on setting up custom API and best practices. (April 6, 2024)       Power Apps: Creating business applications rapidly (Sydney) At this event, learn how to choose the right app on Power Platform, creating a business application in an hour, and tips for using Copilot AI. While we recommend attending all 6 events in the series, each session is independent of one another, and you can join the topics of your interest. Think of it as a “Hop On, Hop Off” bus! Participation is free, but you need a personal computer (laptop) and we provide the rest. We look forward to seeing you there! (April 11, 2024)     April 2024 Cleveland Power Platform User Group (Independence, Ohio) Kickoff the meeting with networking, and then our speaker will share how to create responsive and intuitive Canvas Apps using features like Variables, Search and Filtering. And how PowerFx rich functions and expressions makes configuring those functionalities easier. Bring ideas to discuss and engage with other community members! (April 16, 2024)     Dynamics 365 and Power Platform 2024 Wave 1 Release (NYC, Online) This session features Aric Levin, Microsoft Business Applications MVP and Technical Architect at Avanade and Mihir Shah, Global CoC Leader of Microsoft Managed Services at IBM. We will cover some of the new features and enhancements related to the Power Platform, Dataverse, Maker Portal, Unified Interface and the Microsoft First Party Apps (Microsoft Dynamics 365) that were announced in the Microsoft Dynamics 365 and Power Platform 2024 Release Wave 1 Plan. (April 17, 2024)     Let’s Explore Copilot Studio Series: Bot Skills to Extend Your Copilots (Makati National Capital Reg... Join us for the second installment of our Let's Explore Copilot Studio Series, focusing on Bot Skills. Learn how to enhance your copilot's abilities to automate tasks within specific topics, from booking appointments to sending emails and managing tasks. Discover the power of Skills in expanding conversational capabilities. (April 30, 2024)   Upcoming Dynamics365 Events    Leveraging Customer Managed Keys (CMK) in Dynamics 365 (Noida, Uttar Pradesh, Online) This month's featured topic: Leveraging Customer Managed Keys (CMK) in Dynamics 365, with special guest Nitin Jain from Microsoft. We are excited and thankful to him for doing this session. Join us for this online session, which should be helpful to all Dynamics 365 developers, Technical Architects and Enterprise architects who are implementing Dynamics 365 and want to have more control on the security of their data over Microsoft Managed Keys. (April 11, 2024)     Stockholm D365 User Group April Meeting (Stockholm) This is a Swedish user group for D365 Finance and Operations, AX2012, CRM, CE, Project Operations, and Power BI.  (April 17, 2024)         Transportation Management in D365 F&SCM Q&A Session (Toronto, Online) Calling all Toronto UG members and beyond! Join us for an engaging and informative one-hour Q&A session, exclusively focused on Transportation Management System (TMS) within Dynamics 365 F&SCM. Whether you’re a seasoned professional or just curious about TMS, this event is for you. Bring your questions! (April 26, 2024)   Leaders, Create Your Events!    Leaders of existing User Groups, don’t forget to create your events within the Community platform. By doing so, you’ll enable us to share them in future posts and newsletters. Let’s spread the word and make these gatherings even more impactful! Stay tuned for more updates, inspiring stories, and collaborative opportunities from and for our Community User Groups.   P.S. Have an event or success story to share? Reach out to us – we’d love to feature you. Just leave a comment or send a PM here in the Community!

Exclusive LIVE Community Event: Power Apps Copilot Coffee Chat with Copilot Studio Product Team

We have closed kudos on this post at this time. Thank you to everyone who kudo'ed their RSVP--your invitations are coming soon!  Miss the window to RSVP? Don't worry--you can catch the recording of the meeting this week in the Community.  Details coming soon!   *****   It's time for the SECOND Power Apps Copilot Coffee Chat featuring the Copilot Studio product team, which will be held LIVE on April 3, 2024 at 9:30 AM Pacific Daylight Time (PDT).     This is an incredible opportunity to connect with members of the Copilot Studio product team and ask them anything about Copilot Studio. We'll share our special guests with you shortly--but we want to encourage to mark your calendars now because you will not want to miss the conversation.   This live event will give you the unique opportunity to learn more about Copilot Studio plans, where we’ll focus, and get insight into upcoming features. We’re looking forward to hearing from the community, so bring your questions!   TO GET ACCESS TO THIS EXCLUSIVE AMA: Kudo this post to reserve your spot! Reserve your spot now by kudoing this post.  Reservations will be prioritized on when your kudo for the post comes through, so don't wait! Click that "kudo button" today.   Invitations will be sent on April 2nd.Users posting Kudos after April 2nd. at 9AM PDT may not receive an invitation but will be able to view the session online after conclusion of the event. Give your "kudo" today and mark your calendars for April 3rd, 2024 at 9:30 AM PDT and join us for an engaging and informative session!

Tuesday Tip: Blogging in the Community is a Great Way to Start

TUESDAY TIPS are our way of communicating helpful things we've learned or shared that have helped members of the Community. Whether you're just getting started or you're a seasoned pro, Tuesday Tips will help you know where to go, what to look for, and navigate your way through the ever-growing--and ever-changing--world of the Power Platform Community! We cover basics about the Community, provide a few "insider tips" to make your experience even better, and share best practices gleaned from our most active community members and Super Users.   With so many new Community members joining us each week, we'll also review a few of our "best practices" so you know just "how" the Community works, so make sure to watch the News & Announcements each week for the latest and greatest Tuesday Tips!   This Week's Topic: Blogging in the Community Are you new to our Communities and feel like you may know a few things to share, but you're not quite ready to start answering questions in the forums? A great place to start is the Community blog! Whether you've been using Power Platform for awhile, or you're new to the low-code revolution, the Community blog is a place for anyone who can write, has some great insight to share, and is willing to commit to posting regularly! In other words, we want YOU to join the Community blog.    Why should you consider becoming a blog author? Here are just a few great reasons. 🎉   Learn from Each Other: Our community is like a bustling marketplace of ideas. By sharing your experiences and insights, you contribute to a dynamic ecosystem where makers learn from one another. Your unique perspective matters! Collaborate and Innovate: Imagine a virtual brainstorming session where minds collide, ideas spark, and solutions emerge. That’s what our community blog offers—a platform for collaboration and innovation. Together, we can build something extraordinary. Showcase the Power of Low-Code: You know that feeling when you discover a hidden gem? By writing about your experience with your favorite Power Platform tool, you’re shining a spotlight on its capabilities and real-world applications. It’s like saying, “Hey world, check out this amazing tool!” Earn Trust and Credibility: When you share valuable information, you become a trusted resource. Your fellow community members rely on your tips, tricks, and know-how. It’s like being the go-to friend who always has the best recommendations. Empower Others: By contributing to our community blog, you empower others to level up their skills. Whether it’s a nifty workaround, a time-saving hack, or an aha moment, your words have impact. So grab your keyboard, brew your favorite beverage, and start writing! Your insights matter and your voice counts! With every blog shared in the Community, we all do a better job of tackling complex challenges with gusto. 🚀   Welcome aboard, future blog author! ✍️✏️🌠 Get started blogging across the Power Platform Communities today! Just follow one of the links below to begin your blogging adventure.   Power Apps: https://powerusers.microsoft.com/t5/Power-Apps-Community-Blog/bg-p/PowerAppsBlog Power Automate: https://powerusers.microsoft.com/t5/Power-Automate-Community-Blog/bg-p/MPABlog Copilot Studio: https://powerusers.microsoft.com/t5/Copilot-Studio-Community-Blog/bg-p/PVACommunityBlog Power Pages: https://powerusers.microsoft.com/t5/Power-Pages-Community-Blog/bg-p/mpp_blog   When you follow the link, look for the Message Admins button like this on the page's right rail, and let us know you're interested. We can't wait to connect with you and help you get started. Thanks for being part of our incredible community--and thanks for becoming part of the community blog!

Launch Event Registration: Redefine What's Possible Using AI

Join Microsoft product leaders and engineers for an in-depth look at the latest features in Microsoft Dynamics 365 and Microsoft Power Platform. Learn how advances in AI and Microsoft Copilot can help you connect teams, processes, and data, and respond to changing business needs with greater agility. We’ll share insights and demonstrate how 2024 release wave 1 updates and advancements will help you:   Streamline business processes, automate repetitive tasks, and unlock creativity using the power of Copilot and role-specific insights and actions. Unify customer data to optimize customer journeys with generative AI and foster collaboration between sales and marketing teams. Strengthen governance with upgraded tools and features. Accelerate low-code development  using natural language and streamlined tools. Plus, you can get answers to your questions during our live Q&A chat! Don't wait--register today by clicking the image below!  

Top Solution Authors
Top Kudoed Authors
Users online (6,297)