cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
FelipeCaru
Advocate V
Advocate V

Edit view / add field: Select or add new one

Hello all,

I have yet another question that I am not sure if it is possible to do or not.

In my edit screen, which I can see from either Detail>Edit entry or by adding a new entry, I want to be able to have the option to either write a new "title" or selecting from one already created. I know it sounds confusing, maybe, so, in images.

view1_forum.png

In my entry view, I have a list of projects to choose from, and shows the task I have yet to do. Keep in mind that project list. Now,

view2_forum.png

This is edit/new entry view. In this one, on the data that is on the red square, I have to add to what "project" it belongs, or type a new one if it is, well, new. So what I want to know is if it is possible to there choose from one that already exists from list or write new one, if needed; or perhaps write project name and give suggestions of name that already exists; if it doesn't exist, say "no match" in the suggestion field.

So:

  • Select "title"/project from list or write new one
  • Select "title"/project from suggested list when typing or write new one

 

Thanks in advance,

5 ACCEPTED SOLUTIONS

Accepted Solutions

@FelipeCaru 

So, yes, the "formula" I stated was in theory - you needed to adjust to your actual form and control names.

Did you add a ComboBox to your form?  That would be the first step.

 

If this is part of a Form, you will need to unlock that datacard and insert a ComboBox and replace the control type (as combo box is not available in the pre-sets).

 

So, I pre-tested this example.  I have a Form called Form1.  It is tied to a datasource.  I have a Title field on it.  Here are the steps I took:

1) Unlock the Title_DataCard1

2) Insert a ComboBox - my datacard now has StarVisible1, ErrorMessage1, DataCardKey1, DataCardValue1, and now ComboBox1

3) Delete the DataCardValue1 control - (up pop red x's becuase you've pulled a component needed out...not to worry)

4) Rename your ComboBox1 to DataCardValue1 - (red x's go away)

5) Choose the ComboBox now called DataCardValue1

   a) set the Allow Multiple Selections to Off

   b) set the Allow Searching to On

   c) set the Items to Parent.AllowedValues

   d) set your InputTextPlaceHolder to whatever you want the hint text to be.

6) Choose the Title_DataCard1

   a) set the AllowedValues to - RenameColumns(Distinct(dataSource, Title), "Result", "Value") (This rename saves us steps in dealing with the distinct function results)

   b) set the Update to:

        If(!IsBlank(DataCardValue1.Selected.Value), // ComboBox has a selected value? 

           DataCardValue1.Selected.Value, // Then use it.
           DataCardValue1.SearchText)  //Otherwise use the search text

 

You now have the ability to have people choose an existing Item title in your datasource or enter their own.

 

Hope this is clear and helps.

Sorry that some of these names may be different in Spanish.

 

_____________________________________________________________________________________
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

@FelipeCaru 

ARGGGHHH - I just realized what I neglected to tell you!!!

I've been siting here typing out a big long response and following my steps against your photo and it just dawned on me...

STEP 1 should have been.

Before you unlock your datacard - change the Control Type to "Allowed Values"

I don't believe you can change it after you've unlocked.  So, sorry I neglected to mention, but you'll have to add that Title field back into your Form and change its Control Type, Then Delete the custom DataCard as it's not working.

NOW...resume the process with the previous Step 1.

Lo siento! 

_____________________________________________________________________________________
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

@FelipeCaru 

You'll need to always adjust your Formulas based on your own app names.  If I've put "dataSource" in a formula, that's just a representation that this is where you put YOUR datasource.  It appears from your photos, that it is called demo_project

I am also assuming now that your DataCardValue1_1 has been deleted and you are now working with DataCardValue18.

 

So, from what I see, your formula should be:

   RenameColumns(Distinct(demo_project; Title); "Result"; "Value")

 

The Update formula error should go away once the above is corrected.

 

Let's see if we get you there in this one...

_____________________________________________________________________________________
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

@FelipeCaru 

Double check your properties on the DataCardValue18 combobox control.

 

Make sure you have the following:

   Allow Multiple Selections to Off

   Allow Searching to On

   Items to Parent.AllowedValues

   Default to  {Value:ThisItem.Title}

   InputTextPlaceHolder to whatever you want the hint text to be.

   DisplayFields and SearchFields to ["Value"]

 

_____________________________________________________________________________________
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

@FelipeCaru 

Perhaps good for a laugh to conclude this for you...

I didn't notice it before, but you have quotes around Title in your distinct statment (RenameColumns(Distinct(demo_project;"Title");"Result";"Value") ) so guess what...you're only going to have "Title" in your results Smiley LOL

 

So, change your AllowedValues to:

  RenameColumns(Distinct(demo_project;Title);"Result";"Value")

 

And you *should* be good.

_____________________________________________________________________________________
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

21 REPLIES 21
RandyHayes
Super User
Super User

@FelipeCaruhola again...

Have you looked at the ComboBox control?  This would allow you to have a list to choose from and also alow type-in values.  If the user types something in, the ComboBox will have a SearchText value that you can use for your title.  If they choose an existing Title, that will be in the Selected.Value

 

Hope this help.

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

I am not sure if a ComboBox would help, @RandyHayes since one part of the problem is solved, which is choosing one of the existing one. But would it let me type and keep one that does not exist in the list?

@FelipeCaru 

If I understood you correctly - you are trying to provide a Title (project) field that the user can either choose an existing Title/Project or enter in a new one.

Without throwing a bunch of controls at it, you have a could of one-control choices to narrow down:

DropDown - Would show your existing Title/Projects, but no way to enter new.

ListBox - Would show your existing Title/Projects, but no way to enter new and takes a lot of space.

ComboBox Would show your existing Title/Projects, and User can enter new and takes standard space of a text field or dropdown.

 

So, let go with a ComboBox!  (let's call it ComboBox1)

First, it would have to allow searching (AllowSearching property).

Set the Allow Multiple Selections to off.

You can change the "Hint Text" in that control by changing the InputTextPlaceHolder property.

 

Then, when updating your data, you would have to check a condition - that would be is there and item selected or text in the box?  And what if there is both?  On that question, I am going to assume you would use the Selected value over the typed value.

 

(note - this is theory formula - you will need to adjust to your app)

 

If(!IsBlank(ComboBox1.Selected.Value);        // If there is a non-blank value in the selected item i.e. a selected item

   Title/Project = ComboBox1.Selected.Value;   // then set the title/project to that value

   Title/Project = ComboBox1.SearchText     // otherwise, set it to the search text

 

AND, of course you would want to put a condition on all of it to make sure that either an item is selected or that text has been typed.

 

Hope this sheds some more light on it. 

 

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

@RandyHayes 

 

I'm not sure what I am doing wrong since it shows nothing on it, not even the help text since it is blank (even if I added help text to it).

It might be because I am not sure what the entire formula does.

If(!IsBlank(ComboBox1.Selected.Value);Título=ComboBox1.Selected.Value;Título=ComboBox1.SearchText)

For starters, the errors I get from this are:

- Function "IsBlank" has not valid arguments

- Whole formula: Property expects Table values, but this rule generates boolean values non compatibles

- Título: Name is not valid. Can't recognize identifier. This shows up if it refers to element that does not exist anymore (example: erased controller)

- .Value: same error as above

 

What am I doing wrong? As additional info, the "project name" is from the "Título" column.

@FelipeCaru 

So, yes, the "formula" I stated was in theory - you needed to adjust to your actual form and control names.

Did you add a ComboBox to your form?  That would be the first step.

 

If this is part of a Form, you will need to unlock that datacard and insert a ComboBox and replace the control type (as combo box is not available in the pre-sets).

 

So, I pre-tested this example.  I have a Form called Form1.  It is tied to a datasource.  I have a Title field on it.  Here are the steps I took:

1) Unlock the Title_DataCard1

2) Insert a ComboBox - my datacard now has StarVisible1, ErrorMessage1, DataCardKey1, DataCardValue1, and now ComboBox1

3) Delete the DataCardValue1 control - (up pop red x's becuase you've pulled a component needed out...not to worry)

4) Rename your ComboBox1 to DataCardValue1 - (red x's go away)

5) Choose the ComboBox now called DataCardValue1

   a) set the Allow Multiple Selections to Off

   b) set the Allow Searching to On

   c) set the Items to Parent.AllowedValues

   d) set your InputTextPlaceHolder to whatever you want the hint text to be.

6) Choose the Title_DataCard1

   a) set the AllowedValues to - RenameColumns(Distinct(dataSource, Title), "Result", "Value") (This rename saves us steps in dealing with the distinct function results)

   b) set the Update to:

        If(!IsBlank(DataCardValue1.Selected.Value), // ComboBox has a selected value? 

           DataCardValue1.Selected.Value, // Then use it.
           DataCardValue1.SearchText)  //Otherwise use the search text

 

You now have the ability to have people choose an existing Item title in your datasource or enter their own.

 

Hope this is clear and helps.

Sorry that some of these names may be different in Spanish.

 

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

Actually...did some more review on this (sorry was rushing through a solution for you).

While this will get you close to what you want. The issue comes in when you are Editing an existing record.

There is no way to set the search text through formula.  So, you would also need to put on the DefaultSelectedItems property of the combobox in your data card the following:

   {Value:ThisItem.Title}

Ultimately, this will work, but I could see issues if the values somehow don't match.

Your final solution may be to put both a dropdown and textbox in the data card and set the visibility and other properties based on the conditions of the record (new, edit, etc)

 

I believe you'll need to experiment with what works best for you.

 

Hope this is a fun journey.  

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

@RandyHayes 

I got some errors that it seems make it not work at all. The errors I have are:

- Parent.AllowedValues has error of "not valid name, identifier not recognized" (X more "inside")

- DataCardValue1_1.Text has same error (X more on the outside)

- Can't find the "allowedvalues" of the datacard, see:

errorComboBox1.png

 

- And lastly, after using the UPDATE formula, it shows it whole in error:

errorComboBox2.png

3 errors translated are:

- Function IF has some arguments not valid

- Function IsBlank has some arguments not valid

And on top of  the part with ".Value", it says:

- Name not valid. Can't recognize identifier. Normally shows up when formula references an element that doesn't exist (for example, erased controller).

 

Thanks for any help,

@FelipeCaru 

ARGGGHHH - I just realized what I neglected to tell you!!!

I've been siting here typing out a big long response and following my steps against your photo and it just dawned on me...

STEP 1 should have been.

Before you unlock your datacard - change the Control Type to "Allowed Values"

I don't believe you can change it after you've unlocked.  So, sorry I neglected to mention, but you'll have to add that Title field back into your Form and change its Control Type, Then Delete the custom DataCard as it's not working.

NOW...resume the process with the previous Step 1.

Lo siento! 

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

@RandyHayes 

Ha, no worries, happens to anybody.

 

Anyway, still no luck. Errors are now the following:

errorCombobox11.png

This ones from the "AllowedValues" formula.

I also tried with:

RenameColumns(Distinct(DataSourceInfo(demo_project; DataSourceInfo.AllowedValues; "Title"));"Result";"Value")

But that one says that it was expected 2 values and was given 3.

 

The IF part, tho, in Update:

If(!IsBlank(DataCardValue18.Selected.Value);DataCardValue18.Selected.Value;DataCardValue18.SearchText)

Says errors of:

- If/IsBlank has not valid arguments, and that .Value is not valid.

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 (1,934)