Hello All,
Is need to convert an array of items into an array of objects in Power Automate.
For example the below array of items which is split into separate rows via comma (,).
I need to convert it into an array of JSON objects. Like this format shown below:
Which expression or action I need to use in order to achieve this in Power Automate?
Thanks in advance for your feedback.
Solved! Go to Solution.
Hello @autoperfect93
as @grantjenkins already mentioned it is not possible to create an object array as you requested it because of the duplicate properties.
In your example you also wanted to change the data types and trim results. If this is not needed you can also try this:
From: skip(split(concat('"', join(outputs('Compose_Simple_Array'), '","'), '"'), '"$DoMenu=mfnew",'), 1)
Map: json(concat('{ "$DoMenu":"mfnew", ', replace(first(split(item(), '"$DoMenu=mfInsert"')), '=', '":"'), '"$DoMenu2":"mfInsert" }'))
If you need the additional change of types you can do this:
Here is a sample for contr_rate: if(equals(item()?['contr_rate'], null), null, float(item()?['contr_rate']))
And if you don't want those null values for some properties that doesn't exist in the input values you could do it like this (after the first step that is always the same):
Here is a whole scope to test with.
{"id":"9e358817-4c7e-4756-90ed-3fa82b95a791","brandColor":"#8C3900","connectionReferences":{"shared_teams":{"connection":{"id":"/providers/Microsoft.PowerApps/apis/shared_teams/connections/da0f4068677c48aba01f0613c77dcb5b"}},"shared_commondataserviceforapps":{"connection":{"id":"/providers/Microsoft.PowerApps/apis/shared_commondataserviceforapps/connections/62947705b1a746319ca1e59aae985afc"}}},"connectorDisplayName":"Control","icon":"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZlcnNpb249IjEuMSIgdmlld0JveD0iMCAwIDMyIDMyIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPg0KIDxwYXRoIGQ9Im0wIDBoMzJ2MzJoLTMyeiIgZmlsbD0iIzhDMzkwMCIvPg0KIDxwYXRoIGQ9Im04IDEwaDE2djEyaC0xNnptMTUgMTF2LTEwaC0xNHYxMHptLTItOHY2aC0xMHYtNnptLTEgNXYtNGgtOHY0eiIgZmlsbD0iI2ZmZiIvPg0KPC9zdmc+DQo=","isTrigger":false,"operationName":"Scope_Transform_simple_array","operationDefinition":{"type":"Scope","actions":{"Compose_Simple_Array":{"type":"Compose","inputs":["EXENAME=FXDEAL","$DoMenu=mfnew","ticket_no=SRM521213919","sectype=FX Forward","Cparty=SK01-PAI","Entity=SI02-PN","face_value=155091","ccy=EUR","ccy2=USD","contr_rate=1.11","spot_rate=1.11","fwd_rate=0","deal_dt=24-Nov-2023","mature_dt=20-Dec-2023","Dealer=Batch","Comments=Rino","analyse = Risk Center|","$DoMenu=mfInsert","","$DoMenu=mfnew","ticket_no=SRM521213919","sectype=FX Forward","Cparty=SK01-PAI","Entity=SI02-PN","face_valu2=12791982","ccy=USD","ccy2=EUR","contr_rate=1.0925840","spot_rate=1.0925840","fwd_rate=0","deal_dt=24-Nov-2023","mature_dt=20-Dec-2023","Dealer=Batch","Comments=","analyse = Risk Center|","$DoMenu=mfInsert","","$DoMenu=mfnew","ticket_no=SRM521213919","sectype=Non Deliverable Forward","Cparty=SER05-FI","Entity=KIG03-PRE","face_value=58900315","ccy=JPY","ccy2=USD","contr_rate=0.006891","spot_rate=0.006891","fwd_rate=0","deal_dt=24-Nov-2023","mature_dt=20-Dec-2023","Dealer=Batch","Comments=","rate_fix_date=17-Dec-2023","settlement_ccy=USD","analyse = Risk Center|","$DoMenu=mfInsert",""],"runAfter":{},"metadata":{"operationMetadataId":"0af893cd-720f-4c88-a12e-c02187f88d95"}},"Select_solution1":{"type":"Select","inputs":{"from":"@skip(split(concat('\"', join(outputs('Compose_Simple_Array'), '\",\"'), '\"'), '\"$DoMenu=mfnew\",'), 1)","select":"@json(concat('{ \"$DoMenu\":\"mfnew\", ', replace(first(split(item(), '\"$DoMenu=mfInsert\"')), '=', '\":\"'), '\"$DoMenu2\":\"mfInsert\" }'))"},"runAfter":{"Compose_Simple_Array":["Succeeded"]},"metadata":{"operationMetadataId":"0be57ec4-1692-4a54-9281-6c17649bcac7"}},"Select_solution3_temp_array_string":{"type":"Select","inputs":{"from":"@body('Select_solution1')","select":{"Dummy":"{\n\t\"$DoMenu\": \"mfnew\",\n@{if(equals(item()?['ticket_no'],null), null, concat('\"ticket_no\": \"', item()?['ticket_no'], '\",'))}\n@{if(equals(item()?['sectype'],null), null, concat('\"sectype\": \"', item()?['sectype'], '\",'))}\n@{if(equals(item()?['Cparty'],null), null, concat('\"Cparty\": \"', item()?['Cparty'], '\",'))}\n@{if(equals(item()?['Entity'],null), null, concat('\"Entity\": \"', item()?['Entity'], '\",'))}\n@{if(equals(item()?['face_value'],null), null, concat('\"face_value\": ', item()?['face_value'], ','))}\n@{if(equals(item()?['ccy'],null), null, concat('\"ccy\": \"', item()?['ccy'], '\",'))}\n@{if(equals(item()?['ccy2'],null), null, concat('\"ccy2\": \"', item()?['ccy2'], '\",'))}\n@{if(equals(item()?['contr_rate'],null), null, concat('\"contr_rate\": ', item()?['contr_rate'], ','))}\n@{if(equals(item()?['spot_rate'],null), null, concat('\"spot_rate\": ', item()?['spot_rate'], ','))}\n@{if(equals(item()?['fwd_rate'],null), null, concat('\"fwd_rate\": ', item()?['fwd_rate'], ','))}\n@{if(equals(item()?['deal_dt'],null), null, concat('\"deal_dt\": \"', item()?['deal_dt'], '\",'))}\n@{if(equals(item()?['mature_dt'],null), null, concat('\"mature_dt\": \"', item()?['mature_dt'], '\",'))}\n@{if(equals(item()?['Dealer'],null), null, concat('\"Dealer\": \"', item()?['Dealer'], '\",'))}\n@{if(equals(item()?['Comments'],null), null, concat('\"Comments\": \"', item()?['Comments'], '\",'))}\n@{if(equals(item()?['rate_fix_date'],null), null, concat('\"rate_fix_date\": \"', item()?['rate_fix_date'], '\",'))}\n@{if(equals(item()?['settlement_ccy'],null), null, concat('\"settlement_ccy\": \"', item()?['settlement_ccy'], '\",'))}\n@{if(equals(item()?['analyse '],null), null, concat('\"analyse\": \"', item()?['analyse '], '\",'))}\n\t\"$DoMenu2\": \"mfInsert\"\n}"}},"runAfter":{"Select_solution2_from_solution1":["Succeeded"]},"metadata":{"operationMetadataId":"b3742ab1-2a43-45d5-97af-4aa5d52483bd"}},"Select_solution3_from_fast_solution1":{"type":"Select","inputs":{"from":"@body('Select_solution3_temp_array_string')","select":"@json(item()['Dummy'])"},"runAfter":{"Select_solution3_temp_array_string":["Succeeded"]},"description":"json(item()['Dummy'])","metadata":{"operationMetadataId":"19f5d315-4f33-49f4-b565-fc7f6e6d14b0"}},"Select_solution2_from_solution1":{"type":"Select","inputs":{"from":"@body('Select_solution1')","select":{"$DoMenu":"mfnew","ticket_no":"@item()?['ticket_no']","sectype":"@item()?['sectype']","Cparty":"@item()?['Cparty']","Entity":"@item()?['Entity']","face_value":"@if(equals(item()?['face_value'], null), null, float(item()?['face_value']))","ccy":"@item()?['ccy']","ccy2":"@item()?['ccy2']","contr_rate":"@if(equals(item()?['contr_rate'], null), null, float(item()?['contr_rate']))","spot_rate":"@if(equals(item()?['spot_rate'], null), null, float(item()?['spot_rate']))","fwd_rate":"@if(equals(item()?['fwd_rate'], null), null, float(item()?['fwd_rate']))","deal_dt":"@item()?['deal_dt']","mature_dt":"@item()?['mature_dt']","Dealer":"@item()?['Dealer']","Comments":"@item()?['Comments']","rate_fix_date":"@item()?['rate_fix_date']","settlement_ccy":"@item()?['settlement_ccy']","analyse":"@trim(item()?['analyse '])","$DoMenu2":"mfInsert"}},"runAfter":{"Select_solution1":["Succeeded"]},"metadata":{"operationMetadataId":"79170215-a528-4286-9be5-06e4ee0b7ae6"}}},"runAfter":{},"metadata":{"operationMetadataId":"9a79127d-9feb-482e-a4ca-4dbcfe64011a"}}}
Please provide sample data (with sensitive information removed) that covers your issue or question completely, in a usable format (not as a screenshot). Leave out anything not related to the issue.
Will there always be exactly 17 items in each object? If yes, then this is how I'd approach it.
See full flow below. I'll go into each of the actions.
Compose contains your array of values. For this example I will have 4 items per object. I'm using the following data that includes your first item that we will remove "EXENAME=FXDEAL", a few empty items at the end, and the second Beta doesn't have a value.
[
"EXENAME=FXDEAL",
"Alpha=One",
"Beta=Two",
"Gamma=Three",
"Delta=Four",
"",
"Alpha=1",
"Beta=",
"Gamma=3",
"Delta=4",
"",
""
]
Filter array uses the following expressions to clean up our data.
//From (removes the first item)
skip(outputs('Compose'), 1)
Condition (will allow us to remove any empty items)
trim(item())
Select chunks our data into chunks of 4 items at a time and the following expressions to get the names and corresponding values.
//From
chunk(body('Filter_array'), 4)
//Map
//Names
split(item()[0], '=')?[0]
split(item()[1], '=')?[0]
split(item()[2], '=')?[0]
split(item()[3], '=')?[0]
//Values
split(item()[0], '=')?[1]
split(item()[1], '=')?[1]
split(item()[2], '=')?[1]
split(item()[3], '=')?[1]
This will give us the following output from our Select.
[
{
"Alpha": "One",
"Beta": "Two",
"Gamma": "Three",
"Delta": "Four"
},
{
"Alpha": "1",
"Beta": "",
"Gamma": "3",
"Delta": "4"
}
]
Hi @lbendlin and @grantjenkins ,
Thank you both for reaching out.
Unfortunately the number of items in each object will vary - some will be with 17 items and some with 19 items. The reason for this is that inside the file I have different type of foreign exchange deals.
I am attaching an example file.
Inside the example file I have 3 deals each one starts with "$DoMenu=mfnew" and ends with "$DoMenu=mfInsert".
The first row of every file contains the following text "EXENAME=FXDEAL"
The first 2 deals are with 17 items (rows) and the 3rd deal is with 19 items (rows).
Hopefully this will get what you're after. It should work for any number of items for each object.
One thing to note is that an object can't have duplicate property names, so you can't have "$DoMenu": "mfnew" and "$DoMenu": "mfInsert". So, I remove the $ from the mfnew property name in the final output.
See full flow below. I'll go into each of the actions.
Data is a Compose that contains your data.
Select uses the following expressions to split the data by $DoMenu=mfnew, remove the first row, and split by new line.
//From
skip(split(outputs('Data'), '$DoMenu=mfnew'), 1)
//Map
split(item(), decodeUriComponent('%0A'))
Initialize variable data creates a new variable called data of type Array and sets it as a blank array using []. This will eventually contain all of our objects.
Initialize variable item creates a new variable called item of type Object and sets it as an initial object with the DoMenu item as it's only property.
{
"DoMenu": "mfnew"
}
Apply to each array uses the output from the Select so it iterates over each of the arrays.
Filter array removes any blank rows using the following expression.
trim(item())
Apply to each item uses the output from the Filter array so it iterates over each item in the current array.
Compose appends each property/value to the item variable.
addProperty(variables('item'), split(item(), '=')?[0], split(item(), '=')?[1])
Set variable item sets the item to the output from Compose.
Append to array variable appends the output from the item variable to the data variable.
Set variable item DoMenu resets the item variable to the following so it's ready for the next array.
{
"DoMenu": "mfnew"
}
Note - because we are setting values in our variables within our Apply to each loops, we should set both Apply to each array and Apply to each item to a Degree of Parallelism to 1. To do this, click on the three dots ... then Settings, turn on Concurrency Control and set the Degree of Parallelism to 1.
After running the flow, we should get the following output in the data variable. Note the DoMenu and $DoMenu property names.
[
{
"DoMenu": "mfnew",
"ticket_no": "SRM521213919",
"sectype": "FX Forward",
"Cparty": "SK01-PAI",
"Entity": "SI02-PN",
"face_value": "155091",
"ccy": "EUR",
"ccy2": "USD",
"contr_rate": "1.11",
"spot_rate": "1.11",
"fwd_rate": "0",
"deal_dt": "24-Nov-2023",
"mature_dt": "20-Dec-2023",
"Dealer": "Batch",
"Comments": "Rino",
"analyse ": " Risk Center|",
"$DoMenu": "mfInsert"
},
{
"DoMenu": "mfnew",
"ticket_no": "SRM521213919",
"sectype": "FX Forward",
"Cparty": "SK01-PAI",
"Entity": "SI02-PN",
"face_valu2": "12791982",
"ccy": "USD",
"ccy2": "EUR",
"contr_rate": "1.0925840",
"spot_rate": "1.0925840",
"fwd_rate": "0",
"deal_dt": "24-Nov-2023",
"mature_dt": "20-Dec-2023",
"Dealer": "Batch",
"Comments": "",
"analyse ": " Risk Center|",
"$DoMenu": "mfInsert"
},
{
"DoMenu": "mfnew",
"ticket_no": "SRM521213919",
"sectype": "Non Deliverable Forward",
"Cparty": "SER05-FI",
"Entity": "KIG03-PRE",
"face_value": "58900315",
"ccy": "JPY",
"ccy2": "USD",
"contr_rate": "0.006891",
"spot_rate": "0.006891",
"fwd_rate": "0",
"deal_dt": "24-Nov-2023",
"mature_dt": "20-Dec-2023",
"Dealer": "Batch",
"Comments": "",
"rate_fix_date": "17-Dec-2023",
"settlement_ccy": "USD",
"analyse ": " Risk Center|",
"$DoMenu": "mfInsert"
}
]
Hello @autoperfect93
as @grantjenkins already mentioned it is not possible to create an object array as you requested it because of the duplicate properties.
In your example you also wanted to change the data types and trim results. If this is not needed you can also try this:
From: skip(split(concat('"', join(outputs('Compose_Simple_Array'), '","'), '"'), '"$DoMenu=mfnew",'), 1)
Map: json(concat('{ "$DoMenu":"mfnew", ', replace(first(split(item(), '"$DoMenu=mfInsert"')), '=', '":"'), '"$DoMenu2":"mfInsert" }'))
If you need the additional change of types you can do this:
Here is a sample for contr_rate: if(equals(item()?['contr_rate'], null), null, float(item()?['contr_rate']))
And if you don't want those null values for some properties that doesn't exist in the input values you could do it like this (after the first step that is always the same):
Here is a whole scope to test with.
{"id":"9e358817-4c7e-4756-90ed-3fa82b95a791","brandColor":"#8C3900","connectionReferences":{"shared_teams":{"connection":{"id":"/providers/Microsoft.PowerApps/apis/shared_teams/connections/da0f4068677c48aba01f0613c77dcb5b"}},"shared_commondataserviceforapps":{"connection":{"id":"/providers/Microsoft.PowerApps/apis/shared_commondataserviceforapps/connections/62947705b1a746319ca1e59aae985afc"}}},"connectorDisplayName":"Control","icon":"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZlcnNpb249IjEuMSIgdmlld0JveD0iMCAwIDMyIDMyIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPg0KIDxwYXRoIGQ9Im0wIDBoMzJ2MzJoLTMyeiIgZmlsbD0iIzhDMzkwMCIvPg0KIDxwYXRoIGQ9Im04IDEwaDE2djEyaC0xNnptMTUgMTF2LTEwaC0xNHYxMHptLTItOHY2aC0xMHYtNnptLTEgNXYtNGgtOHY0eiIgZmlsbD0iI2ZmZiIvPg0KPC9zdmc+DQo=","isTrigger":false,"operationName":"Scope_Transform_simple_array","operationDefinition":{"type":"Scope","actions":{"Compose_Simple_Array":{"type":"Compose","inputs":["EXENAME=FXDEAL","$DoMenu=mfnew","ticket_no=SRM521213919","sectype=FX Forward","Cparty=SK01-PAI","Entity=SI02-PN","face_value=155091","ccy=EUR","ccy2=USD","contr_rate=1.11","spot_rate=1.11","fwd_rate=0","deal_dt=24-Nov-2023","mature_dt=20-Dec-2023","Dealer=Batch","Comments=Rino","analyse = Risk Center|","$DoMenu=mfInsert","","$DoMenu=mfnew","ticket_no=SRM521213919","sectype=FX Forward","Cparty=SK01-PAI","Entity=SI02-PN","face_valu2=12791982","ccy=USD","ccy2=EUR","contr_rate=1.0925840","spot_rate=1.0925840","fwd_rate=0","deal_dt=24-Nov-2023","mature_dt=20-Dec-2023","Dealer=Batch","Comments=","analyse = Risk Center|","$DoMenu=mfInsert","","$DoMenu=mfnew","ticket_no=SRM521213919","sectype=Non Deliverable Forward","Cparty=SER05-FI","Entity=KIG03-PRE","face_value=58900315","ccy=JPY","ccy2=USD","contr_rate=0.006891","spot_rate=0.006891","fwd_rate=0","deal_dt=24-Nov-2023","mature_dt=20-Dec-2023","Dealer=Batch","Comments=","rate_fix_date=17-Dec-2023","settlement_ccy=USD","analyse = Risk Center|","$DoMenu=mfInsert",""],"runAfter":{},"metadata":{"operationMetadataId":"0af893cd-720f-4c88-a12e-c02187f88d95"}},"Select_solution1":{"type":"Select","inputs":{"from":"@skip(split(concat('\"', join(outputs('Compose_Simple_Array'), '\",\"'), '\"'), '\"$DoMenu=mfnew\",'), 1)","select":"@json(concat('{ \"$DoMenu\":\"mfnew\", ', replace(first(split(item(), '\"$DoMenu=mfInsert\"')), '=', '\":\"'), '\"$DoMenu2\":\"mfInsert\" }'))"},"runAfter":{"Compose_Simple_Array":["Succeeded"]},"metadata":{"operationMetadataId":"0be57ec4-1692-4a54-9281-6c17649bcac7"}},"Select_solution3_temp_array_string":{"type":"Select","inputs":{"from":"@body('Select_solution1')","select":{"Dummy":"{\n\t\"$DoMenu\": \"mfnew\",\n@{if(equals(item()?['ticket_no'],null), null, concat('\"ticket_no\": \"', item()?['ticket_no'], '\",'))}\n@{if(equals(item()?['sectype'],null), null, concat('\"sectype\": \"', item()?['sectype'], '\",'))}\n@{if(equals(item()?['Cparty'],null), null, concat('\"Cparty\": \"', item()?['Cparty'], '\",'))}\n@{if(equals(item()?['Entity'],null), null, concat('\"Entity\": \"', item()?['Entity'], '\",'))}\n@{if(equals(item()?['face_value'],null), null, concat('\"face_value\": ', item()?['face_value'], ','))}\n@{if(equals(item()?['ccy'],null), null, concat('\"ccy\": \"', item()?['ccy'], '\",'))}\n@{if(equals(item()?['ccy2'],null), null, concat('\"ccy2\": \"', item()?['ccy2'], '\",'))}\n@{if(equals(item()?['contr_rate'],null), null, concat('\"contr_rate\": ', item()?['contr_rate'], ','))}\n@{if(equals(item()?['spot_rate'],null), null, concat('\"spot_rate\": ', item()?['spot_rate'], ','))}\n@{if(equals(item()?['fwd_rate'],null), null, concat('\"fwd_rate\": ', item()?['fwd_rate'], ','))}\n@{if(equals(item()?['deal_dt'],null), null, concat('\"deal_dt\": \"', item()?['deal_dt'], '\",'))}\n@{if(equals(item()?['mature_dt'],null), null, concat('\"mature_dt\": \"', item()?['mature_dt'], '\",'))}\n@{if(equals(item()?['Dealer'],null), null, concat('\"Dealer\": \"', item()?['Dealer'], '\",'))}\n@{if(equals(item()?['Comments'],null), null, concat('\"Comments\": \"', item()?['Comments'], '\",'))}\n@{if(equals(item()?['rate_fix_date'],null), null, concat('\"rate_fix_date\": \"', item()?['rate_fix_date'], '\",'))}\n@{if(equals(item()?['settlement_ccy'],null), null, concat('\"settlement_ccy\": \"', item()?['settlement_ccy'], '\",'))}\n@{if(equals(item()?['analyse '],null), null, concat('\"analyse\": \"', item()?['analyse '], '\",'))}\n\t\"$DoMenu2\": \"mfInsert\"\n}"}},"runAfter":{"Select_solution2_from_solution1":["Succeeded"]},"metadata":{"operationMetadataId":"b3742ab1-2a43-45d5-97af-4aa5d52483bd"}},"Select_solution3_from_fast_solution1":{"type":"Select","inputs":{"from":"@body('Select_solution3_temp_array_string')","select":"@json(item()['Dummy'])"},"runAfter":{"Select_solution3_temp_array_string":["Succeeded"]},"description":"json(item()['Dummy'])","metadata":{"operationMetadataId":"19f5d315-4f33-49f4-b565-fc7f6e6d14b0"}},"Select_solution2_from_solution1":{"type":"Select","inputs":{"from":"@body('Select_solution1')","select":{"$DoMenu":"mfnew","ticket_no":"@item()?['ticket_no']","sectype":"@item()?['sectype']","Cparty":"@item()?['Cparty']","Entity":"@item()?['Entity']","face_value":"@if(equals(item()?['face_value'], null), null, float(item()?['face_value']))","ccy":"@item()?['ccy']","ccy2":"@item()?['ccy2']","contr_rate":"@if(equals(item()?['contr_rate'], null), null, float(item()?['contr_rate']))","spot_rate":"@if(equals(item()?['spot_rate'], null), null, float(item()?['spot_rate']))","fwd_rate":"@if(equals(item()?['fwd_rate'], null), null, float(item()?['fwd_rate']))","deal_dt":"@item()?['deal_dt']","mature_dt":"@item()?['mature_dt']","Dealer":"@item()?['Dealer']","Comments":"@item()?['Comments']","rate_fix_date":"@item()?['rate_fix_date']","settlement_ccy":"@item()?['settlement_ccy']","analyse":"@trim(item()?['analyse '])","$DoMenu2":"mfInsert"}},"runAfter":{"Select_solution1":["Succeeded"]},"metadata":{"operationMetadataId":"79170215-a528-4286-9be5-06e4ee0b7ae6"}}},"runAfter":{},"metadata":{"operationMetadataId":"9a79127d-9feb-482e-a4ca-4dbcfe64011a"}}}
Hi @Matthy79 @grantjenkins ,
I now have a JSON array of objects as shown below:
How can I update values inside the "Cparty" item? I need to update the names of the counterparties based on a separate excel table saved in SharePoint folder. Here is the table:
For example I have "Cparty": "SI03-MAIN 3521570153" which I need to update to "Cparty": "SI03-MAIN" by fetching the data from column B "New Counterparty name" in the excel table.
Hello @autoperfect93
I would suggest to create a lookup object from your excel table and use select to set the property information by using SetProperty. I am currently busy and not on the computer. If this information is not enough just create a new topic and I am sure somebody can help with this issue.
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!
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
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.
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