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

Create a news post when a list item is created

Is there a flow when a new list item is created it creates a news post with the info from that list item?

1 ACCEPTED SOLUTION

Accepted Solutions
Expiscornovus
Multi Super User
Multi Super User

Hi @PrasadAthalye ,

 

Sorry to bud in. But I think @Anonymous is talking about SharePoint news posts (pages with promoted state of 1 or 2).

 

If you are talking about another type of news posts, ignore my example below  😁

 

test_newspost.png

 

 

You could create these via the SharePoint REST API. Below is an example.

 

1. Add a when an item is created trigger action. Configure it to use a list.
In my example this CMS_NewsPosts list has two columns, Title and Description (both single line of text type).whenanitemiscreated.png

 

2. Add a Send an HTTP request to SharePoint action. For the creating of the draft news post. Use the site address field for the destination site of the page.

 

URI

/_api/sitepages/pages

 

Body

{"__metadata":{"type":"SP.Publishing.SitePage"},"PromotedState":1,"PageLayoutType":"Article"}

 

restapi_createpage_newspost.png

 

3. Add a Send an HTTP request to SharePoint action. For the checkout of the page. 

 

URI

/_api/sitepages/pages(@{outputs('Send_an_HTTP_request_to_SharePoint')?['body']?['d']['Id']})/checkoutpage

 

restapi_checkoutpage_id.png

 

4. Add a Send an HTTP request to SharePoint action. The title and the text within the page are set.

In this example I am using the Title and a Description field from the trigger action.

 

URI

_api/sitepages/pages(@{outputs('Send_an_HTTP_request_to_SharePoint')?['body']?['d']['Id']})/SavePageAsDraft

 

Body

{
"LayoutWebpartsContent":"[{\"id\":\"cbe7b0a9-3504-44dd-a3a3-0e5cacd07788\",\"instanceId\":\"cbe7b0a9-3504-44dd-a3a3-0e5cacd07788\",\"title\":\"\\n      Title area\\n    \",\"description\":\"\\n      Title area description\\n    \",\"audiences\":[],\"serverProcessedContent\":{\"htmlStrings\":{},\"searchablePlainTexts\":{},\"imageSources\":{\"imageSource\":\"\"},\"links\":{},\"customMetadata\":{\"imageSource\":{}}},\"dataVersion\":\"1.4\",\"properties\":{\"imageSourceType\":2,\"title\":\"Test\",\"textAlignment\":\"Left\",\"showPublishDate\":false,\"authors\":[{\"id\":\"\",\"upn\":\"\",\"email\":\"\",\"name\":\"\",\"role\":\"\"}],\"showTopicHeader\":false,\"authorByline\":[\"\"],\"layoutType\":\"CutInShape\",\"titlePlaceholder\":\"Name your news post\",\"topicHeader\":\"\"},\"reservedHeight\":356}]","CanvasContent1":"[{\"controlType\":4,\"id\":\"1212fc8d-dd6b-408a-8d5d-9f1cc787efbb\",\"position\":{\"controlIndex\":2,\"sectionIndex\":1,\"sectionFactor\":12,\"zoneIndex\":1,\"layoutIndex\":1},\"addedFromPersistedData\":true,\"innerHTML\":\"@{triggerOutputs()?['body/Description']}\",\"emphasis\":{}},{\"controlType\":0,\"pageSettingsSlice\":{\"isDefaultDescription\":true,\"isDefaultThumbnail\":true}}]","Title":"@{triggerOutputs()?['body/Title']}"}

 

restapi_savepageasdraft.png



Happy to help out! 🙂

Interested in more #PowerAutomate #SharePointOnline or #PowerVirtualAgents content?
Visit my blog, Subscribe to my YouTube channel or Follow me on Twitter


View solution in original post

32 REPLIES 32
PrasadAthalye
Community Champion
Community Champion

Can you please clarify what do you mean by a new post? Are you referring to a Twitter post?

Please Like and Mark this as Answer if it resolves your Issue.

Power Automate Community
Expiscornovus
Multi Super User
Multi Super User

Hi @PrasadAthalye ,

 

Sorry to bud in. But I think @Anonymous is talking about SharePoint news posts (pages with promoted state of 1 or 2).

 

If you are talking about another type of news posts, ignore my example below  😁

 

test_newspost.png

 

 

You could create these via the SharePoint REST API. Below is an example.

 

1. Add a when an item is created trigger action. Configure it to use a list.
In my example this CMS_NewsPosts list has two columns, Title and Description (both single line of text type).whenanitemiscreated.png

 

2. Add a Send an HTTP request to SharePoint action. For the creating of the draft news post. Use the site address field for the destination site of the page.

 

URI

/_api/sitepages/pages

 

Body

{"__metadata":{"type":"SP.Publishing.SitePage"},"PromotedState":1,"PageLayoutType":"Article"}

 

restapi_createpage_newspost.png

 

3. Add a Send an HTTP request to SharePoint action. For the checkout of the page. 

 

URI

/_api/sitepages/pages(@{outputs('Send_an_HTTP_request_to_SharePoint')?['body']?['d']['Id']})/checkoutpage

 

restapi_checkoutpage_id.png

 

4. Add a Send an HTTP request to SharePoint action. The title and the text within the page are set.

In this example I am using the Title and a Description field from the trigger action.

 

URI

_api/sitepages/pages(@{outputs('Send_an_HTTP_request_to_SharePoint')?['body']?['d']['Id']})/SavePageAsDraft

 

Body

{
"LayoutWebpartsContent":"[{\"id\":\"cbe7b0a9-3504-44dd-a3a3-0e5cacd07788\",\"instanceId\":\"cbe7b0a9-3504-44dd-a3a3-0e5cacd07788\",\"title\":\"\\n      Title area\\n    \",\"description\":\"\\n      Title area description\\n    \",\"audiences\":[],\"serverProcessedContent\":{\"htmlStrings\":{},\"searchablePlainTexts\":{},\"imageSources\":{\"imageSource\":\"\"},\"links\":{},\"customMetadata\":{\"imageSource\":{}}},\"dataVersion\":\"1.4\",\"properties\":{\"imageSourceType\":2,\"title\":\"Test\",\"textAlignment\":\"Left\",\"showPublishDate\":false,\"authors\":[{\"id\":\"\",\"upn\":\"\",\"email\":\"\",\"name\":\"\",\"role\":\"\"}],\"showTopicHeader\":false,\"authorByline\":[\"\"],\"layoutType\":\"CutInShape\",\"titlePlaceholder\":\"Name your news post\",\"topicHeader\":\"\"},\"reservedHeight\":356}]","CanvasContent1":"[{\"controlType\":4,\"id\":\"1212fc8d-dd6b-408a-8d5d-9f1cc787efbb\",\"position\":{\"controlIndex\":2,\"sectionIndex\":1,\"sectionFactor\":12,\"zoneIndex\":1,\"layoutIndex\":1},\"addedFromPersistedData\":true,\"innerHTML\":\"@{triggerOutputs()?['body/Description']}\",\"emphasis\":{}},{\"controlType\":0,\"pageSettingsSlice\":{\"isDefaultDescription\":true,\"isDefaultThumbnail\":true}}]","Title":"@{triggerOutputs()?['body/Title']}"}

 

restapi_savepageasdraft.png



Happy to help out! 🙂

Interested in more #PowerAutomate #SharePointOnline or #PowerVirtualAgents content?
Visit my blog, Subscribe to my YouTube channel or Follow me on Twitter


Anonymous
Not applicable

@Expiscornovus, your post has been  very helpful.  I'm having a hard time with the formatting on the news post.

Can you offer some pointers?

 

And is there a way to auto post the news post?  

 

Thank you for everything!

 

thressac_0-1616513708728.png

 

Expiscornovus
Multi Super User
Multi Super User

Hi @Anonymous,

 

Apologies for the delayed reply. 

 

You can use the following HTTP request to publish the news post.

 

publishnewspost.png



Happy to help out! 🙂

Interested in more #PowerAutomate #SharePointOnline or #PowerVirtualAgents content?
Visit my blog, Subscribe to my YouTube channel or Follow me on Twitter


Hi @Expiscornovus ,

 

I am getting error as :

The property '__metadata' does not exist on type 'SP.Publishing.SitePage'. Make sure to only use property names that are defined by the type.
clientRequestId: b9b3295e-01b5-433d-9822-00211bbbafc8
serviceRequestId: c94be69f-c0b5-c000-499b-0b63ef4b74ea

 

Kumars100_0-1629178820796.jpeg

 

Hi @Expiscornovus  Sorry for disturbing. Your solution really helped me in doing the bits I wanted for my NEWs post.

Just a tiny questions...How Can I add background Image to the news page.

I added link to the image source in the json but nothing happened , probably I am banging my head searching for the script.

Your help will be immensely appreciated/. Thanks 

test.JPG

 

Hi @Kumars100 probably You might have figured it out by now, if not I also came across same and I typed exactly same like @Expiscornovus with space after json; odata

 

E.JPG

Expiscornovus
Multi Super User
Multi Super User

Hi @schoden,

 

Just had a quick look. It should be possible by updating the control like this in the CanvasContent1 section of the json.

 

 

{\"controlType\":4,\"id\":\"1212fc8d-dd6b-408a-8d5d-9f1cc787efbb\",\"position\":{\"controlIndex\":2,\"sectionIndex\":1,\"sectionFactor\":12,\"zoneIndex\":1,\"layoutIndex\":1},\"addedFromPersistedData\":true,\"innerHTML\":\"<p>This is a description<br></p><p><a href=\\\"https://www.microsoft.com\\\" data-cke-saved-href=\\\"https://www.microsoft.com\\\" target=\\\"_self\\\" data-interception=\\\"on\\\" title=\\\"https://www.microsoft.com\\\">Microsoft Hyperlink</a><br></p>\",\"emphasis\":{},\"zoneGroupMetadata\":{\"type\":0}}

 

 

hyperlinkjson.png



Happy to help out! 🙂

Interested in more #PowerAutomate #SharePointOnline or #PowerVirtualAgents content?
Visit my blog, Subscribe to my YouTube channel or Follow me on Twitter


@Expiscornovus Greatly appreciate your time and effort. Helped me so much 😄 

Thoman
Helper III
Helper III

If I wanted to format a table or something the post function fails. I am assuming I need some sort of breaks before I use special characters to set the table styles with this method? I noticed it would also fail if I had new line breaks so I made sure the string I create for my table is formatted into a single line.

 

Adding the Style info causing the post to fail below.

 

<table style="width:100%"><tr><th>Form Number</th><th>Description</th><th>Last Used Date</th></tr><tbody>

 

Also tried creating a variable to store my style settings but doesn't seem to apply when the page is created.

<head><style>table, td, th {border: 1px solid black;}table {border-collapse: collapse; width: 100%;}th, td {text-align: left; padding: 8px;}tr:nth-child(odd){background-color: #f2f2f2}th {background-color: #005b9a; color: white;}</style></head>

 

Hi @Expiscornovus ,

 

If have a file saved in Site Pages already with a promoted state 0. How can I publish it to a news page that will be displayed on the news web part?

 

can I simply uses the publish http request to change the promoted state from 1 to 2?

 

Your expertise will be greatly appreciated - Thanks. 

 

I resolved my issue by using the following URIComponentToString

 

uriComponentToString(replace(uriComponent(variables('Table')), '%0A'''))

Awesome solution, @Expiscornovus, this worked great for me! You are clearly a genius. 😉 Thank you so much!

 

I'm wondering if you can help me take this solution a little further. I would like to write a few custom metadata values from the list to the library when the page is created. Any advice on how I can do that? I've tried a few different approaches but nothing has worked so far.

thanks, @Expiscornovus for the great building of the flow

 

I just have a problem with the step for saving as a draft it always shows me an error bad gateway. When removing the description content it ends successfully. 

I have a similar flow built to create a site page using columns from a list. The flow works fine until I try to insert a rich text column from the list I suspect that it is failing when the html gets inserted into the POST and needs some sort of string replacement. I have used the Compose action with a replace() function to replace " with \" and can see that this action is working, but the POST still fails.

 

Compose:

replace(triggerOutputs()?['body/Detailed_x0020_description'],'"','\"'

 

Resulting POST:

{"__metadata": {"type": "SP.Publishing.SitePage"},"LayoutWebpartsContent": "[{\"id\":\"cbe7b0a9-3504-44dd-a3a3-0e5cacd07788\",\"instanceId\":\"cbe7b0a9-3504-44dd-a3a3-0e5cacd07788\",\"title\":\"Title area\",\"description\":\"Title Region Description\",\"audiences\":[],\"serverProcessedContent\":{\"htmlStrings\":{},\"searchablePlainTexts\":{},\"imageSources\":{\"imageSource\":\"https://cdn.hubblecontent.osi.office.net/m365content/publish/165e337b-a8b8-4fa3-84ac-2652220701c9/15...\"},\"links\":{},\"customMetadata\":{\"imageSource\":{\"imgWidth\":2048,\"imgHeight\":939}}},\"dataVersion\":\"1.4\",\"properties\":{\"title\":\"Automate\",\"imageSourceType\":2,\"layoutType\":\"FullWidthImage\",\"textAlignment\":\"Left\",\"showTopicHeader\":false,\"showPublishDate\":false,\"topicHeader\":\"\",\"enableGradientEffect\":true,\"authors\":[],\"authorByline\":[],\"imgHeight\":939,\"imgWidth\":2048,\"hasTitleBeenCommitted\":true},\"reservedHeight\":228}]","CanvasContent1": "[{\"controlType\":4,\"id\":\"0171c194-0f2a-4f56-9868-0c886409c919\",\"position\":{\"zoneIndex\":0.5,\"sectionIndex\":1,\"controlIndex\":1,\"sectionFactor\":4,\"layoutIndex\":1},\"emphasis\":{\"zoneEmphasis\":0},\"zoneGroupMetadata\":{\"type\":0},\"addedFromPersistedData\":true,\"innerHTML\":\"<p><strong>Category:</strong> teaching</p><p><strong>Available to:</strong> employees</p><p><strong>Licensing:</strong> LICENSING</p><p><strong>Install type:</strong> INSTALLTYPE</p><p><strong>Target group:</strong> TARGETGROUP</p><p><strong>Application type:</strong> APPLICATIONTYPES</p><p><strong>System owner: IT</strong> </p><p><strong>Status: active</strong> </p>\"},{\"controlType\":4,\"id\":\"6a8f10b1-ea58-4290-bfff-c23fe79140a6\",\"position\":{\"zoneIndex\":0.5,\"sectionIndex\":2,\"controlIndex\":1,\"sectionFactor\":8,\"layoutIndex\":1},\"emphasis\":{\"zoneEmphasis\":0},\"zoneGroupMetadata\":{\"type\":0},\"addedFromPersistedData\":true,\"innerHTML\":\"<p><div class=\"ExternalClass2D3554E869DD46FA827A0B3A47458D0A\"><div style=\"font-family&#58;Calibri, Arial, Helvetica, sans-serif;font-size&#58;11pt;color&#58;rgb(0, 0, 0);\">TEXT</div></div></p>\"},{\"controlType\":0,\"pageSettingsSlice\":{\"isDefaultDescription\":true,\"isDefaultThumbnail\":true}}]","AuthorByline": [],"TopicHeader": "","BannerImageUrl": "https://cdn.hubblecontent.osi.office.net/m365content/publish/165e337b-a8b8-4fa3-84ac-2652220701c9/15...","Title": "DATEV DMS String 3"}
 
Any ideas?
Fatimah_33
Helper I
Helper I

@atolson I have noticed something for this kind of error. During the posting of the text into the site page, the text is too long and I think it is exceeding the limits of the text which is 256. I have tried to add small text and the workflow run successfully. 

@Fatimah_33 Thanks for the suggestion, but my example has less than 256 characters (even with html tags). 

Tan-M_816
Regular Visitor

Hi All I'm having trouble adding an Image to my news post, hoping someone might have a suggestion?  I've got the flow working to create a news post when a new list item is added and publish to SP but I can't get it to add an image to the banner or the thumbnail.

 

TanM_816_0-1644202281510.png

 

{
"LayoutWebpartsContent":"[{\"id\":\"cbe7b0a9-3504-44dd-a3a3-0e5cacd07788\",\"instanceId\":\"cbe7b0a9-3504-44dd-a3a3-0e5cacd07788\",\"title\":\"\\n Title area\\n \",\"description\":\"\\n Title area description\\n \",\"audiences\":[],\"serverProcessedContent\":{\"htmlStrings\":{},\"searchablePlainTexts\":{},\"imageSources\":{\"imageSource\":\"https://companyname.sharepoint.com/:i:/s/Travel2/EZpSSl48dqtKha6lmzjRc2MBN3ZlRXUZA1Noo7K7i6k74w?e=2a..."},\"links\":{},\"customMetadata\":{\"imageSource\":{}}},\"dataVersion\":\"1.4\",\"properties\":{\"imageSourceType\":2,\"title\":\"Test\",\"textAlignment\":\"Left\",\"showPublishDate\":false,\"authors\":[{\"id\":\"\",\"upn\":\"\",\"email\":\"\",\"name\":\"\",\"role\":\"\"}],\"showTopicHeader\":false,\"authorByline\":[\"\"],\"layoutType\":\"CutInShape\",\"titlePlaceholder\":\"Name your news post\",\"topicHeader\":\"\"},\"reservedHeight\":356}]","CanvasContent1":"[{\"controlType\":4,\"id\":\"1212fc8d-dd6b-408a-8d5d-9f1cc787efbb\",\"position\":{\"controlIndex\":2,\"sectionIndex\":1,\"sectionFactor\":12,\"zoneIndex\":1,\"layoutIndex\":1},\"addedFromPersistedData\":true,\"innerHTML\":\"<p>The warning level has been issued as @{triggerOutputs()?['body/Warning_x0020_Level/Value']} <br></p><p><a href=\\\"https://companyname.sharepoint.com/:i:/s/Travel2/EbHJU0iSw8VIhxdPEKxHXz0BUWfckidbBJKlbhQiJcTKBQ?e=04...\\" data-cke-saved-href=\\\"https://companyname.sharepoint.com/:i:/s/Travel2/EbHJU0iSw8VIhxdPEKxHXz0BUWfckidbBJKlbhQiJcTKBQ?e=04...\\" target=\\\"_self\\\" data-interception=\\\"on\\\" title=\\\"https://companyname.sharepoint.com/sites/Travel2/_layouts/15/listform.aspx?PageType=4&ListId=08c359e...\\">Click here to read the full Warning details for item @{triggerOutputs()?['body/ID']}</a><br></p>\",\"emphasis\":{}},{\"controlType\":0,\"pageSettingsSlice\":{\"isDefaultDescription\":true,\"isDefaultThumbnail\":true}}]","AuthorByline": [],"TopicHeader": "","BannerImageUrl": "https://companyname.sharepoint.com/:i:/s/Travel2/EbHJU0iSw8VIhxdPEKxHXz0BUWfckidbBJKlbhQiJcTKBQ?e=5v...","Title":"@{triggerOutputs()?['body/Title']}"

 

 

What I end up with is 

(thumbnail)

TanM_816_1-1644202727664.png

When I click on the news post it opens to this

TanM_816_2-1644202789733.png

 

What am I missing???

 

Just to be clear the body of the news is orriginally comming from an email directly to myself from an external party, upon receipt a new list item is added to SP.

 

Any suggestions would be extreemly appreciated.

 

Hi there. Your steps worked for me! I wish you had a guide or link to tell us how you wrote all that code down. On top of that, I would like to assign a metadata category to the News Post once it is created by the flow. Where would I add this into the flow? Do you have a online book that will allow me to learn how to edit the json so I can learn how to use these HTTP flow actions?


Thanks,

Cory

Helpful resources

Announcements

Back to Basics: Tuesday Tip #2: All About Community Ranks

This weekly series is our way of helping the amazing members of our community--both new members and seasoned veterans--learn and grow in how to best engage in the community! Each Tuesday, we will feature new areas of content that will help you best understand the community--from ranking and badges to profile avatars, from Super Users to blogging in the community. Our hope is that this information will help each of our community members grow in their experience with Power Platform, with the community, and with each other!   Have you ever wondered how your fellow community members earn the different ranks available? What is the difference between an Advocate and a Helper, a Solution Sage and a Community Champion? In today's #TuesdayTip, we share the secrets and tips to help YOU keep your ranking growing--and why it's so important to our communities. What are community ranks? - Power Platform Community (microsoft.com)   Get the details in this Knowledge Base article that shows you what ranks are, how they are achieved, and what they mean to you as you engage with other community members on a regular basis. Once you start your journey in the community, ranking up, you'll find the benefits. So get busy with those kudos, solutions, and more! We can't wait to see how you rank!That's it for this week. Tune in for more Tuesday Tips next Tuesday and join the community as we continue to get "Back to Basics."

It's #MPPC23 Week! Check Out the Community Sessions and Events Happening in Vegas

After all the planning and preparing, the annual Microsoft Power Platform Conference is finally here! We are excited to see so many of our community in Las Vegas this week. To help make sure you don't miss any of the workshops, sessions, and events we have planned, make sure to check out this handy Community One-Sheet, and download the pdf today! Make sure to stop by the Community Lounge to meet @hugobernier, @EricArcher, @heaher_italent, and @AshleyFelts from our team!    

Join Us for the First-Ever Biz Apps Community User Group Meeting: Live from MPPC23

      Join us for the first-ever the Biz Apps Community User Group meeting live from the Power Platform Conference! This one hour user group meeting is all about discovering the value and benefits of User Groups! Discover how you can find a group in your local area or about specific topics where you can learn new skills and meet like-minded people as a user group member.   Hear from User Group leaders about why they do what they do and what resources they receive to help them succeed as community ambassadors. If you have never attended a User Group meeting before, this will be a great introduction! We hope you are inspired to find a group that meets your unique interests!   October 5th at 2:15 pm Pacific time   If you're attending #MPPC23 in Las Vegas, join us in person! Find out more here: https://powerplatformconf.com/#!/session/Biz%20Apps%20Community%20User%20Group%20Meeting%20-%20Live%20from%20MPPC/6172   Not at MPPC23? Attend vvirtually by registering here: https://aka.ms/MPPCusergroupmeeting2023    If you can't attend this meeting live, don't worry! We will record this meeting and share it with the Community at powerusers.microsoft.com 

Back to Basics: Tuesday Tip #1: All About YOUR Community Account

We are excited to kick off our new #TuesdayTIps series, "Back to Basics." This weekly series is our way of helping the amazing members of our community--both new members and seasoned veterans--learn and grow in how to best engage in the community! Each Tuesday, we will feature new areas of content that will help you best understand the community--from ranking and badges to profile avatars, from Super Users to blogging in the community. Our hope is that this information will help each of our community members grow in their experience with Power Platform, with the community, and with each other!     This Week's Tips: Account Support: Changing Passwords, Changing Email Addresses or Usernames, "Need Admin Approval," Etc.Wondering how to get support for your community account? Check out the details on these common questions and more. Just follow the link below for articles that explain it all.Community Account Support - Power Platform Community (microsoft.com)   All About GDPR: How It Affects Closing Your Community Account (And Why You Should Think Twice Before You Do)GDPR, the General Data Protection Regulation (GDPR), took effect May 25th 2018. A European privacy law, GDPR imposes new rules on companies and other organizations offering goods and services to people in the European Union (EU), or that collect and analyze data tied to EU residents. GDPR applies no matter where you are located, and it affects what happens when you decide to close your account. Read the details here:All About GDPR - Power Platform Community (microsoft.com)   Getting to Know You: Setting Up Your Community Profile, Customizing Your Profile, and More.Your community profile helps other members of the community get to know you as you begin to engage and interact. Your profile is a mirror of your activity in the community. Find out how to set it up, change your avatar, adjust your time zone, and more. Click on the link below to find out how:Community Profile, Time Zone, Picture (Avatar) & D... - Power Platform Community (microsoft.com)   That's it for this week. Tune in for more Tuesday Tips next Tuesday and join the community as we get "Back to Basics."

Announcing the MPPC's Got Power Talent Show at #MPPC23

Are you attending the Microsoft Power Platform Conference 2023 in Las Vegas? If so, we invite you to join us for the MPPC's Got Power Talent Show!      Our talent show is more than a show—it's a grand celebration of connection, inspiration, and shared journeys. Through stories, skills, and collective experiences, we come together to uplift, inspire, and revel in the magic of our community's diverse talents. This year, our talent event promises to be an unforgettable experience, echoing louder and brighter than anything you've seen before.    We're casting a wider net with three captivating categories:  Demo Technical Solutions: Show us your Power Platform innovations, be it apps, flows, chatbots, websites or dashboards... Storytelling: Share tales of your journey with Power Platform. Hidden Talents: Unveil your creative side—be it dancing, singing, rapping, poetry, or comedy. Let your talent shine!    Got That Special Spark? A Story That Demands to Be Heard? Your moment is now!  Sign up to Showcase Your Brilliance: https://aka.ms/MPPCGotPowerSignUp  Deadline for submissions: Thursday, Sept 28th    How It Works:  Submit this form to sign up: https://aka.ms/MPPCGotPowerSignUp  We'll contact you if you're selected. Get ready to be onstage!  The Spotlight is Yours: Each participant has 3-5 minutes to shine, with insightful commentary from our panel of judges. We’re not just giving you a stage; we’re handing you the platform to make your mark.     Be the Story We Tell: Your talents and narratives will not just entertain but inspire, serving as the bedrock for our community’s future stories and successes.    Celebration, Surprises, and Connections: As the curtain falls, the excitement continues! Await surprise awards and seize the chance to mingle with industry experts, Microsoft Power Platform leaders, and community luminaries. It's not just a show; it's an opportunity to forge connections and celebrate shared successes.    Event Details:  Date and Time: Wed Oct 4th, 6:30-9:00PM   Location: MPPC23 at the MGM Grand, Las Vegas, NV, USA  

September User Group Success Story: Reading Dynamics 365 & Power Platform User Group

The Reading Dynamics 365 and Power Platform User Group is a community-driven initiative that started in September 2022. It has quickly earned recognition for its enthusiastic leadership and resilience in the face of challenges. With a focus on promoting learning and networking among professionals in the Dynamics 365 and Power Platform ecosystem, the group has grown steadily and gained a reputation for its commitment to its members!   The group, which had its inaugural event in January 2023 at the Microsoft UK Headquarters in Reading, has since organized three successful gatherings, including a recent social lunch. They maintain a regular schedule of four events per year, each attended by an average of 20-25 enthusiastic participants who enjoy engaging talks and, of course, pizza.   The Reading User Group's presence is primarily spread through LinkedIn and Meetup, with the support of the wider community. This thriving community is managed by a dedicated team consisting of Fraser Dear, Tim Leung, and Andrew Bibby, who serves as the main point of contact for the UK Dynamics 365 and Power Platform User Groups.   Andrew Bibby, an active figure in the Dynamics 365 and Power Platform community, nominated this group due to his admiration for the Reading UK User Group's efforts. He emphasized their remarkable enthusiasm and success in running the group, noting that they navigated challenges such as finding venues with resilience and smiles on their faces. Despite being a relatively new group with 20-30 members, they have managed to achieve high attendance at their meetings.   The group's journey began when Fraser Dear moved to the Reading area and realized the absence of a user group catering to professionals in the Dynamics 365 and Power Platform space. He reached out to Andrew, who provided valuable guidance and support, allowing the Reading User Group to officially join the UK Dynamics 365 and Power Platform User Groups community.   One of the group's notable achievements was overcoming the challenge of finding a suitable venue. Initially, their "home" was the Microsoft UK HQ in Reading. However, due to office closures, they had to seek a new location with limited time. Fortunately, a connection with Stephanie Stacey from Microsoft led them to Reading College and its Institute of Technology. The college generously offered them event space and support, forging a mutually beneficial partnership where the group promotes the Institute and encourages its members to support the next generation of IT professionals.   With the dedication of its leadership team, the Reading Dynamics 365 and Power Platform User Group is poised to continue growing and thriving! Their story exemplifies the power of community-driven initiatives and the positive impact they can have on professional development and networking in the tech industry. As they move forward with their upcoming events and collaborations with Reading College, the group is likely to remain a valuable resource for professionals in the Reading area and beyond.  

Users online (3,030)