cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
tested1
Helper V
Helper V

Concatenate look up fields

Hello, 

 

I have a what seems like a complex problem I will try to explain. Please if you dont get any of it let me know. I will post a quick summary first here and then explain it. I have put some pictures below. Please let me know if more is needed

 

Quick Summary:

  1. I have two SharePoint lists. One a powerapps form for users to fill in. The second contains a master list which contains all the choices and the first list uses this as a look up column
  2. I want to combine a field from the first list with one from the second look up column.

 

Scenario.

  1. I have a powerapps Form on a SharePoint List for users to fill in
  2. One column is say 'Country' and options could be Australia (AUS)...India (IND) etc. To make the Austriala (Aus) choice I created a second list, made columns country, country code and then a concatenate column using a calculated column to combine the two columns (country+code) (See pic 1). I then used a look up column on my original form that gets this 'Concatenate field) for the user
  3. I wanted to keep the country code separate to make up the Name column
  4. Another column is 'Name' on the original list/form for the user to fill in
  5. What I want to do is combine the Name field with the Country field to give say Name_Country. BUT I only want to combine the 'Country Code' column in the second list with the 'Name' column in the original list. So it could be 'Team_AUS' I dont want to combine the Name and the country column because it would be Name_Austriala (AUS)...I only want to combine the country code with the name in a new column called.

Pic 1 shows the second list where I have created the concatenate column which is used as a look up column in my powerapps form (list 1)

Pic 2 shows the 'Country' Column in my Powerapps form (list 1). Here I have chosen to look up the concatenate column but also bring the 'code' column which is hidden from the user (views)

Pic 3 shows my Powerapp form (list 1) but filtered to just show the columns I want to combine. Here you can see I need to combine the 'Name' column with the 'Country:Code' Column 

 

Please if there is any help or tips I would really appreciate it. Sorry this is very difficult to explain. Can it be done in Powerapps to have this autopopulated 'Name' Column which has the 2 columns/look up field combined?

 

I am unsure if this should be in the Microsoft Flow community or SharePoint..but saw similar posts for Powerapps community!

 

112233

9 REPLIES 9
RandyHayes
Super User
Super User

@tested1 

To be clear...are you looking for this to be done automatically through SharePoint, or are you looking to have this appear in your PowerApp?

I personally always consider the business logic of what I am doing and the importance of where it lives.  If you put your logic into a PowerApp, then any entry to your SharePoint list will then be through the PowerApp - not an issue, just a point (although rules of design say that business logic should not exist in the front-end).

If you make the logic happen in Flow, then your SharePoint list can be manipulated through any source and your logic will apply (not exactly putting the logic on the back-end, but at least putting a governor in place to apply your rule).

 

What I am leading to in short is that point in time when you look at a column that doesn't have what you want in it and trace it back to - "oh, that was not entered in PowerApps" - Which, BTW, would be any existing data unless you put in logic in a PowerApp (or Flow for that matter) to "apply" your rule to all other records that already exist.

 

So, what I'm driving at is - are you looking to 1) "sweep" your list and apply this rule, 2) apply this rule for every item created regardless of creation source, or 3) apply the rule for any new entries made through a custom App/Form?

If so, the answers are 1) Flow or PowerApp  2) Flow  3) PowerApp

 

Now these are just suggestions.  The purists would point to obvious other combinations of these, but these are at least the most simplistic starting points to consider.

 

Hope this is helpful.

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

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

Hello @RandyHayes . Thank you for the reply!!

 

What do you suggest would be the best way or would be the most pragmatic method?

 

What I was planning to do is hide the 'Name' form or make it Read only in the PowerApps form and have it auto populate once the user has filled in the rest of the form..it could happen once they have clicked submit on the form or automatically while they pick options..whatever is best or easier to do?

 

A user would click new item in the SharePoint list and the powerapp form would appear for them to fill in.

 

P.S there are no existing items on the form, as the form is still in development stage. So everything will be new entries. I think it would be 3? Im not too sure on what you mean by 1 and 2 but I just wanted the concatenate column to appear on the sharepoint list and/or the PowerApp form

 

Thanks. Please let me know if you want more details 🙂

 

@tested1 

So if you're just starting this fresh and are going to be the Interface to your data, then a PowerApp is a fine thing to have.  

 

What I was planning to do is hide the 'Name' form or make it Read only in the PowerApps form and have it auto populate once the user has filled in the rest of the form..it could happen once they have clicked submit on the form or automatically while they pick options..whatever is best or easier to do?


This is completely feasible.  For the most part, since you are just filling in the column with values, it only makes a difference at the point of SubmitForm.  So, in this case, you will set the visibility of the datacard for the Name column to false (or I recommend setting it to the value of a toggle control while you're testing - so you can hide and unhide as you need).  Then you will focus on the Update property of the Name datacard and make sure it is providing the values you want to be submitted back to the list.

 

P.S there are no existing items on the form, as the form is still in development stage. So everything will be new entries. I think it would be 3? Im not too sure on what you mean by 1 and 2 but I just wanted the concatenate column to appear on the sharepoint list and/or the PowerApp form

Yes, sounds like you fall into situation #3 - Go PowerApps!!  

 

I think you're in the right starting point.  Get yourself up to speed on the EditForm.  Focus on DataCards and the primary properties - DataField, Default, Update.  And then post back here with any questions or problems you run into.

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

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

Hi @RandyHayes 

 

Thank you for the reply!

 

The main problem is how to create the combined(from multiple other columns including a look up column) column/datafield which auto populates..Question:

 

  1. I am quite new to PowerApps..Do you have any steps or guides on how I would go about setting up this 'combined/concatenated column' from look up columns/datasources in the SharePoint List? I have no idea where to start to try to create a combined auto-populated column from look up column :S.

I really wanted to get this column created asap but its quite difficult to explain what I wanted.

 

Do you understand what I am trying to achieve? Just checking if its clear/viable what I hoped to create

 

Thank you!

@tested1 

So, I can't give you a specific formula to slam-dunk this for you because I don't know your columns, lookups, data, etc.

But, we can start to get close and you can take it from there hopefully, or continue to get some guidance from the posts here.

 

In general, let's imagine that you have a New EditForm.  Let's say we hide the Name DataCard in the form.

Also in the form you have a DropDown selection of the Country.

You can easily do a lookup on the Country list:

   Lookup(CountryList, Title=thisDropDown.Value).Code

 

Then, again in general, you would simply have (for your Update property of the Name DataCard)

   yourTeamNameDataValue & Lookup(CountryList, Title=thisDropDown.Value).Code

 

This would give you, as in your example, Test_01_BRA if, for example, the Brazil country is selected in the DropDown.

 

So...your first step is to brush up on all of the items in this post in Red.

Head on over to the Docs and look into these.

Then, once you get the idea down.  Figure out if you are doing an App (standalone with SharePoint Connection) or a Customized form (within SharePoint interface).

Then let's see what questions roll out from that.

 

I hope this has given some fuel for thought and a boost to the next step.

 

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

Thank you @RandyHayes  I will be getting my head around this.. In the mean time just to clarify the steps you mentioned

 

  1. I have a powerapps form connected to a sharepoint list already created with many columns. 
  2. Column one is name - user enters a name e.g. Test in the form
  3. Column two is country - User selects a country. Option could be 'Brazil (BRA)'
  4. Column three is 'Combined' - This would be the steps you said and would hopefully autopopulate to give e.g. 'BRA_Test' by using the lookup in the other list called Country which contains columns, Country name, Country code, Combined (so Brazil, BRA, and Brazil (BRA). This combined column should be read only or hidden from the user

Thats the steps I want to take and will use your reply to drive 🙂 P.S the combined column, 'BRA_Test' I have a few more lookups I wanted to add to it so say BRA_XXX_ZZZ_Test, just more look up columns. But I will start with One (Country code) Since rest will be same steps. This is no problem right/just follow the same steps once I have it working for one column?

 

P.s. do you have a link for the docs hyperlink you mentioned? it says 404 error when I click it

 

Thank you! 🙂

@tested1 

So I had to re-read the post again...it seems that, what I was thinking was, you wanted to hide the Name field from them.  But, perhaps this is all much simpler - you want to just combine the Name and the Country code into the concatenate column...is this correct?

If so, then yes, it is quite straight-forward.

You would only need to do the following on the Update property of the DataCard for the concatenate column:

 ThisItem.Name & "_" & Lookup(CountryList, Title=dropDownBox.Selected.Value).Code

You could hide the concatenate column from the EditForm if you need.

I hope my assumption after closer inspection of your posting is accurate and this is more what you are looking for.

 

Also...I updated the post with the link to the Docs.  Here it is again for reference. That is the functions list.  To read up more on the Controls in PowerApps, take a look over these documents.

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

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

hi @RandyHayes ,

 

That sounds correct! I tried it but received some errors.. The key issue is I need to do the combined column from 2 lists. Is that possible? So one field is in my original list and the second field which is the code is in a separate second list..

 

Would I click on my form and add the second list as a data source? Wont this mess up the existing original form data source? But I was able to select the second list from the second data source ok..so maybe its fine

 

Also the field (Code column)  I want to combine is in a separate column in the second list (See pic) I need to combine this  with my 'Title' column in list 1.. The error seems to be in the dropdownbox etc part. Is there a way to select the 'Code' Column in the second list? Thank you

 

list2.pnglist23.png

@tested1 

So again re-reading your question from the beginning, let me see if this is clear:

List 2 (Teams Request Form) is the list of Country, Code and concatenated columns.

List 1 (I don't know the name of this list) is the list you are working on that has a Lookup column to List 2 and creates two columns in your List 1 - concatenate and Code

 

You want:

  1. To alter the Title column in List 1 to be CountryCode, "_", TeamName (found in the Name column)
  2. The Title column will be hidden from users
  3. Users will select a Country (based on values in List 2) from a drop down control.
  4. The Title column must update with "CountryCodeSelected_TeamName"

So again, your steps will be this:

Step 1:  Add the List 2 as a DataSource in your App. (again, from what I see, you call this "Teams Request Form")

Step 2:  Set the Items of your DropDown control to this formula:

    dataSourceAddedInStep1

    But, to get a little "nicer" in your list, you might consider this instead:

    SortyByColumns(ShowColumns(dataSourceAddedInStep1), "Country"), "Country")  This will give you a sorted list of just countries.

Step 3: Hide your Title DataCard - Set Visible property to false

Step 4: Change your Update property on the Title DataCard to the following formula:

   Lookup(dataSourceAddedInStep1, Country=yourDropDownControl.Selected.Value).Code & "_" & ThisItem.Name

 

That will do what you are looking for (if I have assumed your situation correctly)

 

Hope this helps.

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

Helpful resources

Announcements

Tuesday Tip: Getting Started with Private Messages & Macros

Welcome to TUESDAY TIPS, your weekly connection with the most insightful tips and tricks that empower both newcomers and veterans in the Power Platform Community! Every Tuesday, we bring you a curated selection of the finest advice, distilled from the resources and tools in the Community. Whether you’re a seasoned member or just getting started, Tuesday Tips are the perfect compass guiding you across the dynamic landscape of the Power Platform Community.   As our community family expands each week, we revisit our essential tools, tips, and tricks to ensure you’re well-versed in the community’s pulse. Keep an eye on the News & Announcements for your weekly Tuesday Tips—you never know what you may learn!   This Week's Tip: Private Messaging & Macros in Power Apps Community   Do you want to enhance your communication in the Community and streamline your interactions? One of the best ways to do this is to ensure you are using Private Messaging--and the ever-handy macros that are available to you as a Community member!   Our Knowledge Base article about private messaging and macros is the best place to find out more. Check it out today and discover some key tips and tricks when it comes to messages and macros:   Private Messaging: Learn how to enable private messages in your community profile and ensure you’re connected with other community membersMacros Explained: Discover the convenience of macros—prewritten text snippets that save time when posting in forums or sending private messagesCreating Macros: Follow simple steps to create your own macros for efficient communication within the Power Apps CommunityUsage Guide: Understand how to apply macros in posts and private messages, enhancing your interaction with the Community For detailed instructions and more information, visit the full page in your community today:Power Apps: Enabling Private Messaging & How to Use Macros (Power Apps)Power Automate: Enabling Private Messaging & How to Use Macros (Power Automate)  Copilot Studio: Enabling Private Messaging &How to Use Macros (Copilot Studio) Power Pages: Enabling Private Messaging & How to Use Macros (Power Pages)

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!

Top Solution Authors
Top Kudoed Authors
Users online (7,661)