cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
Anonymous
Not applicable

send email by user name in Excel file

Hi Team,

Is it possible in microsoft flow to send email by excel column (only project manager name not email address),because our manager dont want to add email address manually in excel file.

Status         Project      Item      Type      Start Date            End date              project manager      
Pending       SwS          Java                    15/05/2018           15/08/2018               Dominique philippi
Pending       SI              Python                 08/05/2018           17/08/2018               Arnaud ferrand
Pending       GSS          Ruby                    06/05/2018           05/08/2018               Janice Lagundi

Please reply me.

Regards
Vikas kaushik

1 ACCEPTED SOLUTION

Accepted Solutions
vecerpa
Memorable Member
Memorable Member

Hi @Anonymous,

 

It is possible to search for user via function in Office 365 Users connector.

 

I was playing with it and it seems like you have to search just for surname of user that is filled in project manager columnt of table as the whole name will not deliver result in my case. This is caused by that we have in display name specific format, not just a name.

 

The whole function to get UPN and email of user by name can look like this:

 

ExcelMail.png

 

Expression in search is just splitting the Name of project manager from excel that I previously stored in variable Surname:

 

last(split(variables('Surname'),' '))

After searhc user action you can use email notification with email that was found by User Search.

Hope this helped you

 

P.

 

View solution in original post

25 REPLIES 25
vecerpa
Memorable Member
Memorable Member

Hi @Anonymous,

 

It is possible to search for user via function in Office 365 Users connector.

 

I was playing with it and it seems like you have to search just for surname of user that is filled in project manager columnt of table as the whole name will not deliver result in my case. This is caused by that we have in display name specific format, not just a name.

 

The whole function to get UPN and email of user by name can look like this:

 

ExcelMail.png

 

Expression in search is just splitting the Name of project manager from excel that I previously stored in variable Surname:

 

last(split(variables('Surname'),' '))

After searhc user action you can use email notification with email that was found by User Search.

Hope this helped you

 

P.

 

Anonymous
Not applicable

Hi vecerpa,

Thanks for your reply..
please check below concerns regarding this....

1. this file comes everyweek in excel format......

2. Need to create event reminder flow between start date and End date,

3. inside excel only PM full name is available (no provision for first name and surname).

4. Team dont want to add PM email address manually everweek in excel file (on onedrive for business).

5. is it possible to create 50 users email id in other location like one drive for business (in excel file) then fetch user email id from there to run the flow....because this flow is only for our team.....in office 365 user group there might be possiblity for dulication of surname .........and also surname is not available in the excel file......

6. everything is ok but not able to solve this issue.....(how to send email with PM name only) without email address in excel file.

Please reply....because its a urgent task.

Anonymous
Not applicable

Hi @vecerpa,

Thanks for your reply..
please check below concerns regarding this....

1. this file comes everyweek in excel format......

2. Need to create event reminder flow between start date and End date,

3. inside excel only PM full name is available (no provision for first name and surname).

4. Team dont want to add PM email address manually everweek in excel file (on onedrive for business).

5. is it possible to create 50 users email id in other location like one drive for business (in excel file) then fetch user email id from there to run the flow....because this flow is only for our team.....in office 365 user group there might be possiblity for dulication of surname .........and also surname is not available in the excel file......

6. everything is ok but not able to solve this issue.....(how to send email with PM name only) without email address in excel file.

Please reply....because its a urgent task.

Hi @Anonymous,

 

1. this file comes everyweek in excel format......

Better to use one shared file that is stored in OneDrive for Business or inside SharePoint document library as for now it is possible to load data from groups (Sharepoint team site document library) or sites (SharePoint site document library). Define specific excel file where each editor have access to. No need to have multiple files... etc....

2. Need to create event reminder flow between start date and End date,

There is no problem to create Flow that will be scheduled to trigger at specific time and compare actual date (utcnow expression) against start date and end date.

3. inside excel only PM full name is available (no provision for first name and surname).

Ok, so that is reason why I used split and last expressions to get for example last name. If there is First Name + Last Name format of Project Manager name that is stored in excel file column.


4. Team dont want to add PM email address manually everweek in excel file (on onedrive for business).

If those users (Project Managers) are internall one then there is no problem to look for valid email that is configured for such user via Office 365 Users connector.

5. is it possible to create 50 users email id in other location like one drive for business (in excel file) then fetch user email id from there to run the flow....because this flow is only for our team.....in office 365 user group there might be possiblity for dulication of surname .........and also surname is not available in the excel file......

Yes it is possible, but again as I write in previous point if those users are in your Office 365 tenant with assigned email addresses the excel file you want to create is useless, such information is stored with your user account - in Office 365.

P.

Anonymous
Not applicable

Hi @vecerpa

Thanks for your help and reply....
yes all the users is in office 365.....
can you please share me more details and screenshot, how can i achieve this target....

for example any PM name which email ID on office 365 exists (only name in excel file),how can i send the email to that Project manager, please consider full name not first name or surname.
can you please share further steps in screenshot (only for one or two PM).

Thanks in advance....

Anonymous
Not applicable

Hi @vecerpa
Please reply if no first name or last name provision in excel file and with same name other user is also available in office 365 tenant,
so how can flow get exact user email address for our team,

please share some steps or screenshot....

Regards
Vikas Kaushik

Hi @Anonymous,

 

So the whole Flow can look like this:

 

1. I use manual button trigger just for test purposes, you should change it to something like schedule or whatever you want to trigger your Flow.

 

2. As input i choosed Excel Online Business connector it can load excel files not only from OneDrive for Business but also SharePoint document library.

 

ExcelOnline4.png

 

There is need to have table inside excel file, but this is not a problem.

 

3. I have to prepare some variables inside Flow as the date that comes from Excel Online is in specific format - it represent count of days since 01/01/1900 so there is need to transform it to something comparable to utcnow(} that returns datetime in ISO format.

 

ExcelOnline5.png

 

All variables are strings.

 

4. I load all rows from excel sheet and for each item I compare StartDate and EndDate against current date - utcnow(). And of course as I mention there is need to transform dates from excel online to ISO format. It can be done with this expression

addDays('1900-01-01T00:00:00Z',int(item()?['Start Date']))

and the equal expression to be sure that we are inbetween StartDate and EndDate

@and(greaterOrEquals(utcnow(),variables('StartDateInt')),lessOrEquals(utcnow(),variables('EndDateInt')))

so the whole part of Flow looks like this

ExcelOnline6.png

 

5. If condition result is true there is need to store FullName in variable and then I use Office 365 users connector to lookup for Surname that I parsed from FullName of project manager via split() and last() functions, whole expression looks like this

last(split(variables('Surname'),' '))

This part of Flow looks like this

ExcelOnline7.png

I expect that FullName of project manager is combination of FirstName and Surname so I can use last after I split names by as there I expect space in firstname and lastname (surname).

 

Whole description of Search for Users is available via this link - https://docs.microsoft.com/en-us/connectors/office365users/

 

P.

Anonymous
Not applicable

Hi @vecerpa

i tried with your solution but it was disaster for me,
flow is sending email to every person in company with similar surname.
i just receive my manager email to stop these mails....
please try to understand my question....how can i send a mail to PM (name in excel file) without email address.
if i will use sharepoint list for this....can i create this type of flow,but the issue is no body wants to create item manually in sharepoint list.if yes please share some idea.
or in flow,its only for one excel file or one list or how can i use lookup column in sharepoint list to manage email ID one time in another list.

Thanks in advance


Hi @Anonymous,

 

Yes I understand you.

 

First of all, there is option to test your Flow, before you will make it available in production. And this is highly adviced as the impact to end users can be huge.

 

I don't know your enviroment so the solution that I provide should be updated or changed on your sight as you play with it and test it.

 

So if you have same surname for many persons there should some naming policy that is inside your company to create for example prefix for your UPN (user principal name) that is in format prefix@yourdomain and that prefix is somehow created and that UPN is unique for each person in your company. That can be used to get email of such user.

 

There can be also some information about role of such person like for example JobTitle that also delivered from Search User function as return body. So there can be information like Project Manager or something like that. So you can use it as another condition for email sending.

 

There is always need to find out step by step what leads to your goal. No copy paste provided solution as each enviroment is different...

P.

 

 

 

Anonymous
Not applicable

Hi @vecerpa

Thanks for your reply,
yes, agree for step by step...
but for the surname i used your idea....
and in current environment i am......not able to check the naming convention of each user in our team....

do you think this flow is possible or not ? in any simple way ?if yes please guide me exact solution.....
i tried with sharepoint list also.....with below some steps
1. create new list in sharepoint
2. copy excel items in sharepoint by using flow.
3. but pm name is text you know that...in list and excel file both....
4. How can i use pm email id in flow from second list which is also present in sharepoint in same site (contains all team member email id).
5. if possible please reply me.
6. can we fetch data from two sharepoint list in Flow and then send the mail to respective person.(please reply me but not in yes or NO....)
May be i am disturbing you....but this is urgent and pending task for me

Regards
Vikas

Hi @Anonymous,

 

Yes it can work in way you describe. You can bound a flow to trigger when for example new item in list of projects is being created, such flow can go throught list of PM names and emails and fill column in your list of projects by email of such PM.

 

There is action to load all items in SharePoint list and then you can loop through it and search for string (FullName). It will take some time to find out how match correctly FullName of PM to list in SharePoint as you mention, there can be some mutations as the name is Filled manually into excel sheet.... I can just advice you to split FirstName and SurName into separate columns and look through both separately. You should have better match.

 

Another flow will be triggered on some scheduled basis and create email notifications based on filled dates and use email that is already filled by first flow...

P.

Anonymous
Not applicable

thanks @vecerpa for prompt reply....
you are nice.....but can you please tell me how can i load two sharepoint list columns (one is original one and second for email id of PM)....can you please share one or two steps in flows (screenshot),i tried but not able to match PM name with email ID....
i know its not difficult for you.....:) 

Regards
Vikas Kaushik

Hi @Anonymous,

 

As inspiration you can do it like this:

 

SharePoint list of PMs

ExcelOnline8.png

ProjectList

ExcelOnline9.png

 

Flow

ExcelOnline10.png

ExcelOnline11.png

 

P.

Anonymous
Not applicable

Hi @vecerpa

Thanks for your support
Going step by step,everything is OK
But in the last step showing error "The execution of template action 'Update_item' skipped: the branching condition for this action is not satisfied." while update list item
Regards
Vikas Kaushik

Anonymous
Not applicable

hi again @vecerpa

i tried hard to solve the issue 
atlast i merge condition part in one by using formula "@and(equals(variables('PMFirstName'), items('Apply_to_each')?['FirstName']),equals(variables('PMSurName'), items('Apply_to_each')?['LastName']))"

and skip the yes and No part after condition....but when flow updating the poject list,it is picking any email ID against different PM name.....means if in project list pm name is janice arnaud......its updating the email column by herry.kane@.....com.....
why this happening....i am frustated.....please help...

Hi @Anonymous,

 

You have to change name of variables like 'PMFirstName' to name of variables you use in your Flow. And same is for name of columns from SharePoint list like 'FirstName' and 'LastName'  in your expression for condition. As I used those names in my SharePoint list I used for "table" of PM names and their email addresses.

There is need to adapt it to your Flow (your enviroment).

P.

Anonymous
Not applicable

Hi @vecerpa

Thanks for your response,i know you are also frustating from this....but i dont want to leave this topic now when i am very close to solve this issue.....with your help and support

please check the below steps in my environment.....its in very simple way....nothing complicated ....but project manager email picking wrong email id....

1. My project list: -

1.jpg

2. Email list (name is Email for schedule cost) where i am picking Email Address.

2.jpg

3. Flow.....
3.jpg4.jpg5.jpg6.jpg

Flow status Running successfully no error.....but result is not expected....because ProjectManagerEmail is not correctly picking....

Please reply....

Regards
Vikas Kaushik

Hi @Anonymous,

 

There have to be a space in between ' ' as the space is the separator between first name and surname like "Pavel Vecer". So there is space inbtween and that is the thing the split() function should be looking for. Otherwise it is not able to split it. You can see result of your Flow run when you for example test and there is available output of each action inside Flow, also the input. So you can debug it and see step by step what is happening.

 

First(split(triggerBody()?['ProjectManager'],' '))

P.

Anonymous
Not applicable

Hi @vecerpa

thanks for your kind support till now....Thanks for your idea.now i used only one condition with first name only.....in sharepoint list no duplicate name for our team only....
and its works fine when update any item....
can i do smilar like this for another field HOD name in same project list (head of the department)
i need to fetch two email address one is for PM and another is for HOD.
if i save HOD first name and last name with email address in same email list ?
should I enter new condition,variable or merge both for PM and HOD.

project list :- 
.........PM    PMemail   HODname   HODemail........

and email list.....

firstname     lastname    Emailadrress

If yes ,Please reply and thanks for your support....

Regards
Vikas Kaushik

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)

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 3, 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!      

Users online (8,290)