cancel
Showing results for 
Search instead for 
Did you mean: 
Reply

Email body to Sharepoint List columns (html_to_text)

Hi,

We have a new website which uses a couple of WordPress Forms rather than MS Forms which is causing a bit of a problem.  Rather than replace the whole thing with an MS Form (which doesn't view correctly on a mobile from my experience) I was attempting to pull the form entries into a Sharepoint List. 

 

I have it set up so that if somebody fills the form in I will receive an email like this

 

PowerPlatformEmail.png

I have built a flow to convert the emails from html to text and then I watched a YouTube video that suggested using variables to create breakpoints between each question.  I've tried this with name but I'm not having much success.  I'm way out of my depth when it comes to understanding expressions.

 

I do understand that I should end up with a messagebody variable that I can drop into the name column of my Sharepoint list but I'm just not getting it to either stop before the Email or to start after "name".

Any help appreciated!

1 ACCEPTED SOLUTION

Accepted Solutions

Hi Chris,

Had a look at your form, and worked out a method for you. My approach is completely different to what you are attempting though.

WPForms has the ability to provide multiple notifications, so in addition to the regular email notification I created another notification that looks like this:

wp-forms-notification.png

The code I used in the "Message" block was:

{
  "name": "{field_id="0"}",
  "email":"{field_id="1"}",
  "who":"{field_id="2"}",
  "where":"{field_id="8"}",
  "keepInContact":"{field_id="6"}"
}

The idea of having the JSON is so that we do not need lots of complex expressions to extract the form data at the Power Automate end. It's not quite as easy as it should be because WPForms still sends the email as HTML. So using the HTML to text action produces output like this:

{
"name": "Paul Murana",
"email":"paul@Accendo.co.uk",
"who":"Parent / Carer",
"where":"Dumfries and Galloway",
"keepInContact":"Yes, please - sign me up"
} Sent from Tachytelic.net
[http://url2189.tachytelic.net/ls/click?upn=kEyy8QwW6PCW9BbcVDrfNP97QCZywJSpBYZ25iLMcSLJJ7OSx43GvSq-2Fk5DhijTaWTYr_cp0S-2BBOC3ROGnH21sp2eAj0jWvMI79eT2YEnaP1XlEXUb2SaIKAJ66uQT0uHK9z5YwCloTWdnDBCL1OL1u9c0O0ZpZsR2Y7iNycVI35-2FXw-2FmZuxCtv4N6ItVhq1F63dJT8343-2BDU7vZYU6yOgJpJPUH-2BhaRtUOnuanjRUCog0E03cjVhcsm-2FX98zhnXZP6-2FI7ip0P5HUEfShmAIwoPlKHXOwq8U1DEpVYT-2FXW-2FailE8-3D] 
 [http://url2189.tachytelic.net/wf/open?upn=XcxPmoUIoys7ePeoiju53EcA-2FbscKEFM-2FOl35t-2B8-2FDOKaAL1YmuVY3zBIlICHs9Hh0GVhDPPpSHl6jv46e-2FFsZr-2BAc-2FqzYn2FTnmm3z7Zu0HlodObr0lBgfW-2B4MbNTiu17zQPY-2FWthVtlWNNJsjvWqfj7mHMz-2F-2FkJZmV41I1XBC54dRfKu8WASYNar3CTqeor-2FeAKrkj7dU08YeE4l1xb8JIvberjKhknHIYp0kgBOs-3D]

But it is pretty easy to clean up by searching for the final curly brace in the string. So the flow looks like this:

https://ibb.co/LxbD57H (for easier viewing)

wp-forms-json-process.png

Expressions used:

Find End of JSON

indexOf(outputs('Html_to_text')?['body'], '}')

Get the JSON String

substring(outputs('Html_to_text')?['body'], 0, add(outputs('Find_end_of_JSON'),1))

Once the JSON is captured it is passed into the Parse JSON step and then that exposes the individual fields for easy use in the remainder of the flow. Quite a neat solution if I don't mind saying so myself! 🤣

 

As you work for a charity, let me know if you get stuck and I will help you out. The elite version of WPForms certainly makes this process easier, but this is still easy to do. 

View solution in original post

15 REPLIES 15

I know I am not answering your actual question (and perhaps I should just do that). But what form system are you using in Wordpress (looks like WP-Form?). I've done integrations using both WP-Form and Gravity forms which instead of parsing the email use the HTTP connector instead. By using this method the form results are submitted as JSON, so you can get to the values directly. Makes life a bit easier.

 

Having said that, it would also be possible to parse your email above.

Hi Paulie, thanks for the response!  It is indeed WP-Form but that's as much as I understand your post!  

Something like this which I've pulled from a YouTube video?  I'm clueless how I'd use this step to work with the form results unfortunately.

HTTP.png

Kinda like that:

https://wpforms.com/addons/webhooks-addon/

I think you have inspired me to make a WP-Forms -> Microsoft Power Automate video. My weekend plans are so much better now 🤣

Ah, I was getting excited about and had a follow up question straight away but when I went in to look I see that we're not on WP Forms Elite, think we're on the free version.  We don't have Zapier either hence me digging deeper into PowerAutomate than I'm familiar with.

If you're serious about creating such a video then I'd definitely like to see it!  More than happy to go over the finer points of my struggle should it help shape it.

My IT contractors said it'd take them a few hours to put together which I can't really justify at the moment as the form is only averaging a couple of submissions a day so it's easy enough to manually manage.  But I feel like I'm pretty close so would like to get it done for my own knowledge and sanity 😁


Please share your struggle, be good to get the feedback before building the video. Perhaps an even better idea is that you move up to WP-Forms Pro and we build the form together and make a video out of that. I'm licensed for up to 20 sites and have only used 3, so you could perhaps use one of my licenses (but they do have a sale on at the moment).

 

Anyway - for now. Just post the HTML content received in your flow from an example form submission (before you convert it to text). Should be relatively straightforward to extract the values. 

 

Perhaps an even better idea. If you export your WP-Form definition:

WP-Forms.png 

I can import it into my WP-Forms setup and then just try it out 😁

I can't see that in the WP Forms.  I work for quite a small charity so I'd have to make a case for paying for the WP Forms which I don't really have with the number's we're currently receiving.  Hoping it steps up and I can get the new features to play about with!

 

This is the html code that is fed into the html to text step.

<p><html dir="ltr"><head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"><meta content="text/html; charset=utf-8"><meta content="IE=edge"><meta name="viewport" content="width=device-width, initial-scale=1"><style type="text/css">
<!--
p
	{margin:10px 0;
	padding:0}
table
	{border-collapse:collapse}
h1, h2, h3, h4, h5, h6
	{display:block;
	margin:0;
	padding:0}
img, a img
	{border:0;
	height:auto;
	outline:none;
	text-decoration:none}
body, #bodyTable, #bodyCell
	{height:100%;
	margin:0;
	padding:0;
	width:100%}
#outlook a
	{padding:0}
img
	{}
table
	{}
.ReadMsgBody
	{width:100%}
.ExternalClass
	{width:100%}
p, a, li, td, blockquote
	{}
p, a, li, td, body, table, blockquote
	{}
.ExternalClass, .ExternalClass p, .ExternalClass td, .ExternalClass div, .ExternalClass span, .ExternalClass font
	{line-height:100%}
a[x-apple-data-detectors]
	{color:inherit!important;
	text-decoration:none!important;
	font-size:inherit!important;
	font-family:inherit!important;
	font-weight:inherit!important;
	line-height:inherit!important}
#bodyCell
	{padding:50px 50px}
.templateContainer
	{max-width:600px!important;
	border:0}
a.mcnButton
	{display:block}
.mcnTextContent
	{word-break:break-word}
.mcnTextContent img
	{height:auto!important}
.mcnDividerBlock
	{table-layout:fixed!important}
body, #bodyTable
	{background-color:#e9eaec}
h1
	{color:#202020;
	font-family:'Helvetica Neue',Helvetica,Arial,'Lucida Grande',sans-serif;
	font-size:26px;
	font-style:normal;
	font-weight:bold;
	line-height:125%;
	letter-spacing:normal}
h2
	{color:#202020;
	font-family:'Helvetica Neue',Helvetica,Arial,'Lucida Grande',sans-serif;
	font-size:22px;
	font-style:normal;
	font-weight:bold;
	line-height:125%;
	letter-spacing:normal}
h3
	{color:#202020;
	font-family:'Helvetica Neue',Helvetica,Arial,'Lucida Grande',sans-serif;
	font-size:20px;
	font-style:normal;
	font-weight:bold;
	line-height:125%;
	letter-spacing:normal}
h4
	{color:#202020;
	font-family:'Helvetica Neue',Helvetica,Arial,'Lucida Grande',sans-serif;
	font-size:18px;
	font-style:normal;
	font-weight:bold;
	line-height:125%;
	letter-spacing:normal}
#templateHeader
	{border-top:0;
	border-bottom:0;
	padding-top:0;
	padding-bottom:20px;
	text-align:center}
#templateBody
	{background-color:#FFFFFF;
	border-top:0;
	border:1px solid #c1c1c1;
	padding-top:0;
	padding-bottom:0px}
#templateBody .mcnTextContent, #templateBody .mcnTextContent p
	{color:#555555;
	font-family:'Helvetica Neue',Helvetica,Arial,'Lucida Grande',sans-serif;
	font-size:14px;
	line-height:150%}
#templateBody .mcnTextContent a, #templateBody .mcnTextContent p a
	{color:#ff7f50;
	font-weight:normal;
	text-decoration:underline}
#templateFooter
	{background-color:#e9eaec;
	border-top:0;
	border-bottom:0;
	padding-top:12px;
	padding-bottom:12px}
#templateFooter .mcnTextContent, #templateFooter .mcnTextContent p
	{color:#cccccc;
	font-family:'Helvetica Neue',Helvetica,Arial,'Lucida Grande',sans-serif;
	font-size:12px;
	line-height:150%;
	text-align:center}
#templateFooter .mcnTextContent a, #templateFooter .mcnTextContent p a
	{color:#cccccc;
	font-weight:normal;
	text-decoration:underline}
@media only screen and (min-width:768px){
.templateContainer
	{width:600px!important}

	}
@media only screen and (max-width: 480px){
body, table, td, p, a, li, blockquote
	{}

	}
@media only screen and (max-width: 480px){
body
	{width:100%!important;
	min-width:100%!important}

	}
@media only screen and (max-width: 680px){
#bodyCell
	{padding:20px 20px!important}

	}
@media only screen and (max-width: 480px){
.mcnTextContentContainer
	{max-width:100%!important;
	width:100%!important}

	}
-->
</style></head><body style="height:100%; margin:0; padding:0; width:100%; background-color:#e9eaec"><center><table align="center" border="0" cellpadding="0" cellspacing="0" height="100%" width="100%" id="bodyTable" style="border-collapse:collapse; height:100%; margin:0; padding:0; width:100%; background-color:#e9eaec"><tbody><tr><td align="center" valign="top" id="bodyCell" style="height:100%; margin:0; padding:50px 50px; width:100%"><table border="0" cellpadding="0" cellspacing="0" width="100%" class="templateContainer" style="border-collapse:collapse; border:0; max-width:600px!important"><tbody><tr><td valign="top" id="templateBody" style="background-color:#FFFFFF; border-top:0; border:1px solid #c1c1c1; padding-top:0; padding-bottom:0px"><table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnTextBlock" style="min-width:100%; border-collapse:collapse"><tbody class="mcnTextBlockOuter"><tr><td valign="top" class="mcnTextBlockInner" style=""><table align="left" border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnTextContentContainer" style="min-width:100%; border-collapse:collapse"><tbody><tr><td valign="top" class="mcnTextContent" style="padding-top:30px; padding-right:30px; padding-bottom:30px; padding-left:30px"><table align="left" border="0" cellpadding="0" cellspacing="0" width="100%" style="display:block; min-width:100%; border-collapse:collapse; width:100%"><tbody><tr><td style="color:#333333; padding-top:20px; padding-bottom:3px"><strong>Name</strong></td></tr><tr><td style="color:#555555; padding-top:3px; padding-bottom:20px">Hi Power Platform</td></tr></tbody></table><table align="left" border="0" cellpadding="0" cellspacing="0" width="100%" style="border-top:1px solid #dddddd; display:block; min-width:100%; border-collapse:collapse; width:100%"><tbody><tr><td style="color:#333333; padding-top:20px; padding-bottom:3px"><strong>Email</strong></td></tr><tr><td style="color:#555555; padding-top:3px; padding-bottom:20px"><a href="mailto:testing@email.com">testing@email.com</a></td></tr></tbody></table><table align="left" border="0" cellpadding="0" cellspacing="0" width="100%" style="border-top:1px solid #dddddd; display:block; min-width:100%; border-collapse:collapse; width:100%"><tbody><tr><td style="color:#333333; padding-top:20px; padding-bottom:3px"><strong>Who are you?</strong></td></tr><tr><td style="color:#555555; padding-top:3px; padding-bottom:20px">Professional</td></tr></tbody></table><table align="left" border="0" cellpadding="0" cellspacing="0" width="100%" style="border-top:1px solid #dddddd; display:block; min-width:100%; border-collapse:collapse; width:100%"><tbody><tr><td style="color:#333333; padding-top:20px; padding-bottom:3px"><strong>Where are you based?</strong></td></tr><tr><td style="color:#555555; padding-top:3px; padding-bottom:20px">Comhairle nan Eilean Siar (Western Isles)</td></tr></tbody></table><table align="left" border="0" cellpadding="0" cellspacing="0" width="100%" style="border-top:1px solid #dddddd; display:block; min-width:100%; border-collapse:collapse; width:100%"><tbody><tr><td style="color:#333333; padding-top:20px; padding-bottom:3px"><strong>Do you want to keep up to date with what's going on at Salvesen Mindroom Centre?</strong></td></tr><tr><td style="color:#555555; padding-top:3px; padding-bottom:20px">Not just now, thanks</td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr><td valign="top" id="templateFooter" style="background-color:#e9eaec; border-top:0; border-bottom:0; padding-top:12px; padding-bottom:12px"><table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnTextBlock" style="min-width:100%; border-collapse:collapse"><tbody class="mcnTextBlockOuter"><tr><td valign="top" class="mcnTextBlockInner" style=""><table align="left" border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnTextContentContainer" style="min-width:100%; border-collapse:collapse"><tbody><tr><td valign="top" class="mcnTextContent" style="padding-top:9px; padding-right:18px; padding-bottom:9px; padding-left:18px; word-break:break-word; color:#aaa; font-family:Helvetica; font-size:12px; line-height:150%; text-align:center">Sent from <a href="https://www.mindroom.org" style="color:#bbbbbb">Salvesen Mindroom Centre</a> </td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></center></body></html></p>

 

 And this is what it's come up with in text

 

NameHi Power PlatformEmailtesting@email.comWho are you?ProfessionalWhere are you
based?Comhairle nan Eilean Siar (Western Isles)Do you want to keep up to date
with what's going on at Salvesen Mindroom Centre?Not just now, thanksSent from
Salvesen Mindroom Centre [https://www.mindroom.org]

 

In my first attempt at this I wasn't using the admin account and had the email forwarded on to me.  When I did that the text was that it gave me was laid out better with spaces between the field titles and the submitted content. 

Missed hitting reply there.  What is your YouTube channel?  Would imagine there's more things I could do with learning on there. 

exportForm.gif

Got it, thanks.

 

This is the content of the JSON file but I've removed from the end another email that's automated and not part of this. The form is here on the site and we will be adapting it a little bit for instance the wording of the sign up opt in.  https://www.mindroom.org/resources/future-me-workbook/future-me-digital-form/

 

Thanks!

 

[{"id":"2858","field_id":9,"fields":{"0":{"id":"0","type":"name","label":"Name","format":"first-last","description":"","required":"1","size":"small","simple_placeholder":"","simple_default":"","first_placeholder":"","first_default":"","middle_placeholder":"","middle_default":"","last_placeholder":"","last_default":"","css":"wpforms-one-half wpforms-first wpforms-one-third wpforms-first wpforms-one-third wpforms-first"},"1":{"id":"1","type":"email","label":"Email","description":"","required":"1","size":"small","placeholder":"","confirmation_placeholder":"","default_value":"","css":"wpforms-one-third","filter_type":"","allowlist":"","denylist":""},"2":{"id":"2","type":"radio","label":"Who are you?","choices":{"1":{"label":"Parent \/ Carer","value":"","image":""},"2":{"label":"Young person","value":"","image":""},"3":{"label":"Professional","value":"","image":""},"4":{"label":"Other","value":"","image":""}},"description":"Please check the option that describes you.","required":"1","choices_images_style":"modern","input_columns":"2","css":"wpforms-one-third wpforms-first wpforms-one-third","dynamic_choices":""},"8":{"id":"8","type":"select","label":"Where are you based?","choices":{"41":{"label":"Aberdeen City","value":"","image":""},"5":{"label":"Aberdeenshire","value":"","image":""},"6":{"label":"Angus","value":"","image":""},"7":{"label":"Argyll and Bute","value":"","image":""},"8":{"label":"City of Edinburgh","value":"","image":""},"9":{"label":"Clackmannanshire","value":"","image":""},"10":{"label":"Comhairle nan Eilean Siar (Western Isles)","value":"","image":""},"11":{"label":"Dumfries and Galloway","value":"","image":""},"12":{"label":"Dundee City","value":"","image":""},"13":{"label":"East Ayrshire","value":"","image":""},"14":{"label":"East Dunbartonshire","value":"","image":""},"15":{"label":"East Lothian","value":"","image":""},"16":{"label":"East Renfrewshire","value":"","image":""},"17":{"label":"Falkirk","value":"","image":""},"18":{"label":"Fife","value":"","image":""},"19":{"label":"Glasgow City","value":"","image":""},"20":{"label":"Highland","value":"","image":""},"21":{"label":"Inverclyde","value":"","image":""},"22":{"label":"Midlothian","value":"","image":""},"23":{"label":"Moray","value":"","image":""},"24":{"label":"North Ayrshire","value":"","image":""},"25":{"label":"North Lanarkshire","value":"","image":""},"26":{"label":"Orkney Islands","value":"","image":""},"27":{"label":"Perth and Kinross","value":"","image":""},"28":{"label":"Renfrewshire","value":"","image":""},"29":{"label":"Scottish Borders","value":"","image":""},"30":{"label":"Shetland Islands","value":"","image":""},"31":{"label":"South Ayrshire","value":"","image":""},"32":{"label":"South Lanarkshire","value":"","image":""},"33":{"label":"Stirling","value":"","image":""},"34":{"label":"West Dunbartonshire","value":"","image":""},"35":{"label":"West Lothian","value":"","image":""},"36":{"label":"England","value":"","image":""},"37":{"label":"Wales","value":"","image":""},"38":{"label":"Northern Ireland","value":"","image":""},"39":{"label":"Outside UK","value":"","image":""}},"description":"","required":"1","style":"classic","size":"medium","placeholder":"Select from dropdown","css":"","dynamic_choices":""},"6":{"id":"6","type":"checkbox","label":"Do you want to keep up to date with what's going on at Salvesen Mindroom Centre?","choices":{"1":{"label":"Yes, please - sign me up","value":"","image":""},"3":{"label":"Not just now, thanks","value":"","image":""}},"description":"","required":"1","choices_images_style":"modern","input_columns":"","choice_limit":"","css":"","dynamic_choices":""}},"settings":{"form_title":"Future Me, My Digital Workbook","form_desc":"Please fill out this form to access the Future Me, My Digital Workbook.","form_class":"","submit_text":"Go to resource","submit_text_processing":"Sending...","submit_class":"","antispam":"1","notification_enable":"1","notifications":{"5":{"notification_name":"Submission automation","email":"","subject":"Future Me - Download","sender_name":"","sender_address":"OurEmail","replyto":"chris@mindroom.org","message":"{all_fields}"},"3":{"notification_name":"Mailchimp","email":"admin@mindroom.org","subject":"Mailchimp sign ups from digital workbook"

 

 

 

Well done, it imported into my environment perfectly after I fixed up the HTML. will have a look for you later tonight. I've got to go and play a tennis match now. 🎾 ✔️

Hi Chris,

Had a look at your form, and worked out a method for you. My approach is completely different to what you are attempting though.

WPForms has the ability to provide multiple notifications, so in addition to the regular email notification I created another notification that looks like this:

wp-forms-notification.png

The code I used in the "Message" block was:

{
  "name": "{field_id="0"}",
  "email":"{field_id="1"}",
  "who":"{field_id="2"}",
  "where":"{field_id="8"}",
  "keepInContact":"{field_id="6"}"
}

The idea of having the JSON is so that we do not need lots of complex expressions to extract the form data at the Power Automate end. It's not quite as easy as it should be because WPForms still sends the email as HTML. So using the HTML to text action produces output like this:

{
"name": "Paul Murana",
"email":"paul@Accendo.co.uk",
"who":"Parent / Carer",
"where":"Dumfries and Galloway",
"keepInContact":"Yes, please - sign me up"
} Sent from Tachytelic.net
[http://url2189.tachytelic.net/ls/click?upn=kEyy8QwW6PCW9BbcVDrfNP97QCZywJSpBYZ25iLMcSLJJ7OSx43GvSq-2Fk5DhijTaWTYr_cp0S-2BBOC3ROGnH21sp2eAj0jWvMI79eT2YEnaP1XlEXUb2SaIKAJ66uQT0uHK9z5YwCloTWdnDBCL1OL1u9c0O0ZpZsR2Y7iNycVI35-2FXw-2FmZuxCtv4N6ItVhq1F63dJT8343-2BDU7vZYU6yOgJpJPUH-2BhaRtUOnuanjRUCog0E03cjVhcsm-2FX98zhnXZP6-2FI7ip0P5HUEfShmAIwoPlKHXOwq8U1DEpVYT-2FXW-2FailE8-3D] 
 [http://url2189.tachytelic.net/wf/open?upn=XcxPmoUIoys7ePeoiju53EcA-2FbscKEFM-2FOl35t-2B8-2FDOKaAL1YmuVY3zBIlICHs9Hh0GVhDPPpSHl6jv46e-2FFsZr-2BAc-2FqzYn2FTnmm3z7Zu0HlodObr0lBgfW-2B4MbNTiu17zQPY-2FWthVtlWNNJsjvWqfj7mHMz-2F-2FkJZmV41I1XBC54dRfKu8WASYNar3CTqeor-2FeAKrkj7dU08YeE4l1xb8JIvberjKhknHIYp0kgBOs-3D]

But it is pretty easy to clean up by searching for the final curly brace in the string. So the flow looks like this:

https://ibb.co/LxbD57H (for easier viewing)

wp-forms-json-process.png

Expressions used:

Find End of JSON

indexOf(outputs('Html_to_text')?['body'], '}')

Get the JSON String

substring(outputs('Html_to_text')?['body'], 0, add(outputs('Find_end_of_JSON'),1))

Once the JSON is captured it is passed into the Parse JSON step and then that exposes the individual fields for easy use in the remainder of the flow. Quite a neat solution if I don't mind saying so myself! 🤣

 

As you work for a charity, let me know if you get stuck and I will help you out. The elite version of WPForms certainly makes this process easier, but this is still easy to do. 

This is amazing Paulie, I can't believe you did this last night.  After a game of Tennis I'd need the weekend to recover before doing anything!  Especially in this weather!  

 

I'm just about there and you've even helped me understand a fair whack of what's going on but I have come stuck at the Parse JSON and what I enter in the Schema, how do I generate the sample?

 

Thank you again so much for this help, above and beyond even Resident Rockstar status.

Hi @mindroomchris 

Tennis was indoors, so wasn't very cold. Also I won 6-1,6-0 so it didn't take very long 🤣

Easiest thing to do for the Parse JSON step is just remove it completely. Run the flow and then copy the contents of the "Get the JSON string" step into your clipboard. Then add the parse JSON step and paste the contents of your clipboard into the generate sample function.

Sorry Paulie, I'm trying a few things but I think I'm going to need pushed over the line here.

How do I get the individual fields to appear as options from the parsed JSON?

 

Screenshot 2020-12-11 132449.png

Screenshot 2020-12-11 132802.png

Congrats on the tennis win, I think your opponent may be the one struggling through to the Sunday!

Success!Success!

Very happy, thanks @Paulie78 😀

Helpful resources

Announcements

Community will be READ ONLY July 16th, 5p PDT -July 22nd

Dear Community Members,   We'd like to let you know of an upcoming change to the community platform: starting July 16th, the platform will transition to a READ ONLY mode until July 22nd.   During this period, members will not be able to Kudo, Comment, or Reply to any posts.   On July 22nd, please be on the lookout for a message sent to the email address registered on your community profile. This email is crucial as it will contain your unique code and link to register for the new platform encompassing all of the communities.   What to Expect in the New Community: A more unified experience where all products, including Power Apps, Power Automate, Copilot Studio, and Power Pages, will be accessible from one community.Community Blogs that you can syndicate and link to for automatic updates. We appreciate your understanding and cooperation during this transition. Stay tuned for the exciting new features and a seamless community experience ahead!

Summer of Solutions | Week 4 Results | Winners will be posted on July 24th

We are excited to announce the Summer of Solutions Challenge!    This challenge is kicking off on Monday, June 17th and will run for (4) weeks.  The challenge is open to all Power Platform (Power Apps, Power Automate, Copilot Studio & Power Pages) community members. We invite you to participate in a quest to provide solutions to as many questions as you can. Answers can be provided in all the communities.    Entry Period: This Challenge will consist of four weekly Entry Periods as follows (each an “Entry Period”)   - 12:00 a.m. PT on June 17, 2024 – 11:59 p.m. PT on June 23, 2024 - 12:00 a.m. PT on June 24, 2024 – 11:59 p.m. PT on June 30, 2024 - 12:00 a.m. PT on July 1, 2024 – 11:59 p.m. PT on July 7, 2024 - 12:00 a.m. PT on July 8, 2024 – 11:59 p.m. PT on July 14, 2024   Entries will be eligible for the Entry Period in which they are received and will not carryover to subsequent weekly entry periods.  You must enter into each weekly Entry Period separately.   How to Enter: We invite you to participate in a quest to provide "Accepted Solutions" to as many questions as you can. Answers can be provided in all the communities. Users must provide a solution which can be an “Accepted Solution” in the Forums in all of the communities and there are no limits to the number of “Accepted Solutions” that a member can provide for entries in this challenge, but each entry must be substantially unique and different.    Winner Selection and Prizes: At the end of each week, we will list the top ten (10) Community users which will consist of: 5 Community Members & 5 Super Users and they will advance to the final drawing. We will post each week in the News & Announcements the top 10 Solution providers.  At the end of the challenge, we will add all of the top 10 weekly names and enter them into a random drawing.  Then we will randomly select ten (10) winners (5 Community Members & 5 Super Users) from among all eligible entrants received across all weekly Entry Periods to receive the prize listed below. If a winner declines, we will draw again at random for the next winner.  A user will only be able to win once overall. If they are drawn multiple times, another user will be drawn at random.  Individuals will be contacted before the announcement with the opportunity to claim or deny the prize.  Once all of the winners have been notified, we will post in the News & Announcements of each community with the list of winners.   Each winner will receive one (1) Pass to the Power Platform Conference in Las Vegas, Sep. 18-20, 2024 ($1800 value). NOTE: Prize is for conference attendance only and any other costs such as airfare, lodging, transportation, and food are the sole responsibility of the winner. Tickets are not transferable to any other party or to next year’s event.   ** PLEASE SEE THE ATTACHED RULES for this CHALLENGE**   Week 1 Results: Congratulations to the Week 1 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge.   Community MembersNumber SolutionsSuper UsersNumber Solutions Deenuji 9 @NathanAlvares24  17 @Anil_g  7 @ManishSolanki  13 @eetuRobo  5 @David_MA  10 @VishnuReddy1997  5 @SpongYe  9JhonatanOB19932 (tie) @Nived_Nambiar  8 @maltie  2 (tie)   @PA-Noob  2 (tie)   @LukeMcG  2 (tie)   @tgut03  2 (tie)       Week 2 Results: Congratulations to the Week 2 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 2: Community MembersSolutionsSuper UsersSolutionsPower Automate  @Deenuji  12@ManishSolanki 19 @Anil_g  10 @NathanAlvares24  17 @VishnuReddy1997  6 @Expiscornovus  10 @Tjan  5 @Nived_Nambiar  10 @eetuRobo  3 @SudeepGhatakNZ 8     Week 3 Results: Congratulations to the Week 3 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 3:Community MembersSolutionsSuper UsersSolutionsPower Automate Deenuji32ManishSolanki55VishnuReddy199724NathanAlvares2444Anil_g22SudeepGhatakNZ40eetuRobo18Nived_Nambiar28Tjan8David_MA22   Week 4 Results: Congratulations to the Week 4 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 4:Community MembersSolutionsSuper UsersSolutionsPower Automate Deenuji11FLMike31Sayan11ManishSolanki16VishnuReddy199710creativeopinion14Akshansh-Sharma3SudeepGhatakNZ7claudiovc2CFernandes5 misc2Nived_Nambiar5 Usernametwice232rzaneti5 eetuRobo2   Anil_g2   SharonS2  

Check Out | 2024 Release Wave 2 Plans for Microsoft Dynamics 365 and Microsoft Power Platform

On July 16, 2024, we published the 2024 release wave 2 plans for Microsoft Dynamics 365 and Microsoft Power Platform. These plans are a compilation of the new capabilities planned to be released between October 2024 to March 2025. This release introduces a wealth of new features designed to enhance customer understanding and improve overall user experience, showcasing our dedication to driving digital transformation for our customers and partners.    The upcoming wave is centered around utilizing advanced AI and Microsoft Copilot technologies to enhance user productivity and streamline operations across diverse business applications. These enhancements include intelligent automation, AI-powered insights, and immersive user experiences that are designed to break down barriers between data, insights, and individuals. Watch a summary of the release highlights.    Discover the latest features that empower organizations to operate more efficiently and adaptively. From AI-driven sales insights and customer service enhancements to predictive analytics in supply chain management and autonomous financial processes, the new capabilities enable businesses to proactively address challenges and capitalize on opportunities.    

Updates to Transitions in the Power Platform Communities

We're embarking on a journey to enhance your experience by transitioning to a new community platform. Our team has been diligently working to create a fresh community site, leveraging the very Dynamics 365 and Power Platform tools our community advocates for.  We started this journey with transitioning Copilot Studio forums and blogs in June. The move marks the beginning of a new chapter, and we're eager for you to be a part of it. The rest of the Power Platform product sites will be moving over this summer.   Stay tuned for more updates as we get closer to the launch. We can't wait to welcome you to our new community space, designed with you in mind. Let's connect, learn, and grow together.   Here's to new beginnings and endless possibilities!   If you have any questions, observations or concerns throughout this process please go to https://aka.ms/PPCommSupport.   To stay up to date on the latest details of this migration and other important Community updates subscribe to our News and Announcements forums: Copilot Studio, Power Apps, Power Automate, Power Pages

Users online (1,231)