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

Send a designed email table to users exist in a column with missing data

Hi All, 

I'm having trouble with managing a flow.

I need users to recieve a weekly notification that contains a single table that consolidates all missing approval dates that are in their responsibilities. The users enter their name in a person column in the list. 

 

I have created a scheduled flow to consolidate missing approval dates that exist in a list.

When I arrive to the point of sending an email, it automatically converts it into apply to each which sends tons of single emails (per item instead of a single table). 

 

How can I create a table that will be sent to a specific user listed in this person column on a weekly basis?

For reference, the person column is called : CTC, and the approval column is called : "Approval date".

 

Thanks in advance! 

Oren

1 ACCEPTED SOLUTION

Accepted Solutions

@orengaliki To send a single email to each user with their items you need to do the following:

  • Get items with missing approval dates
  • Get a unique list of users who have items assigned to them
  • Loop through each user and send them a list of item assigned to them

Tip: Rename your actions to keep your flow organized!


Get Items with Missing Approval Dates

Add a Get Items action to your flow to return the items from your SP List.

Filter Query

Compose a Filter Query to return the items that meet your criteria. In my case, I'm returning items that do not have a Task Status equal to Complete. In your flow, you are looking for items where the Approval Date is empty.

 

Your Filter Query may look something like:

ApprovalDate eq null

You will need to use the internal column name of your Approval Date column. If you aren’t sure how to get this, please refer to this section of one of my YT tutorials.

 

creativeopinion_5-1696090783762.png

 

Top Count

Depending on how many items you have in your SP List, I would recommend limiting the Top Count to a smaller number than the total number of items in your list. This will increase the speed of your flow runs. Instead of returning all items in your list—it'll limit the Get Items action to the number entered here.

 

creativeopinion_4-1696090676332.png

 

Return Item Count

Whenever I use a Filter Query in a Get Items action, I always like to return the count of items returned in a Compose action. This is helpful when building a flow and can also be used to troubleshoot your flow. 

 

Insert a Compose action. Add an Expression. Use the length() function. 

creativeopinion_0-1696090352231.png

 

Select the Dynamic content tab and insert the value dynamic content from the Get Items action into the length() function. 

creativeopinion_1-1696090392837.png

 

Run a test.

 

Confirm that the number of items returned is what you are expecting. If the number returned is zero this means the Get Items action hasn't returned any items and you may need to adjust the Top Count (if you've used it) or your Filter Query may be incorrect.

 

creativeopinion_6-1696091202031.png

Add a Condition (optional)

This is an optional action that you can add to your flow. If you are always expecting your list to have items that have an empty Approval date you can skip onto the next section.

Add a Condition action to your flow to check if there are any items returned. Insert the outputs from the Compose action above into the first value field. Change the operator to is not equal to and enter a zero into the second value field.

 

This way you can stop the flow from continuing to run if there aren't any items returned. This will prevent your flow from failing if no items are returned.

creativeopinion_15-1696092195065.png

Get List of Unique Users

Next, you'll need to pull the details of each user who has a task assigned to a task returned from the Get Items action. Remember that if you've limited the top count, not all users will be displayed. 

 

Add a Select action. If you are using the Condition action above—insert these actions into the YES branch.

 

In the from field insert the value dynamic content from the Get Items action. You can enter any text you'd like in the Key Column. to keep it simple I've used Name and Email. In their respective value fields, insert the appropriate dynamic content from the Get Items action that returns the Display Name and Email address from the person column.

creativeopinion_25-1696094273274.png

 

Run a test. Review the outputs. You should see an array of users Names and Emails. If you aren't seeing more than one user returned—you may need to adjust your top count to return a more items.

creativeopinion_28-1696094483558.png

 

Get Unique List of Users

Now that you have a list of all the users assigned to each item (from the Get Items action). You need a way to return a list of unique users. You'll need to use a Compose action and an expression. 

creativeopinion_27-1696094398015.png

 

The union() function takes two arrays and combines them into one. 

union([array1],[array2])

 

Click on the dynamic content tab and insert the output from the Select action above (that contains an array of email addresses). Add a comma and insert the output of the Select action above again. 

 

creativeopinion_26-1696094383764.png

 

It will look something like this. 

creativeopinion_13-1696092039419.png

 

Run a test. Confirm that you have a unique array of email addresses.

creativeopinion_29-1696094587128.png

 

Loop through Each Unique User

Since the Compose action is storing an array of users Names and Emails you are able to loop through the array of users with an Apply to Each action.

Compose Current Email

Insert a Compose action to store the email address of the user being looped through. You'll need an expression. To return the content from the current item, you will need to use the key—which is what was entered into the Select action (also it appears in red in the prev screenshot between the double quotes).

 

If you entered a different key than what I entered—you'll need to adjust the expression below to match your key.

 

item()?['Email']

 

creativeopinion_31-1696094755613.png

 

creativeopinion_32-1696094811134.png

Compose Current User Name

Insert a Compose action to store the name of the user being looped through. You'll need an expression—just like above.

creativeopinion_33-1696094839099.png

 

creativeopinion_34-1696094849348.png

 

Run a test. Confirm the outputs of the Compose actions. 

creativeopinion_35-1696094942910.png

 

Get List of Items Assigned to User

Since you've already returned a list of items from your SP list in the root of the flow—you want to avoid using the Get Items action again. Instead, use a Filter Array action to filter out the items for each user currently being looped through. To learn more about how to use the Filter Array action, please refer to this recent YT Tutorial I uploaded. Note: The Scope action is optional. I like to use them in my flows to quickly collapse multiple actions at once. 

 

In the From field, insert the value dynamic content from the Get Items action. Since the Apply to Each action is looping through email addresses, we can use that to compare to the email addresses in the AssignedTo column. In your case it would be the CTC column.

 

Leave the operator as is equal to

 

In the second value field I've inserted the outputs from the Compose that is storing the current users email address.

creativeopinion_40-1696095417956.png

 

Add a Compose action to store the length of items returned from the Filter Array action. 

Insert the body outputs from the Filter Array action into the length() function.

creativeopinion_20-1696093718683.png

creativeopinion_22-1696093781274.png

Run a test. Confirm that the Apply to Each action is looping through each email address and returning the appropriate number of items assigned to that user.

creativeopinion_37-1696095047639.png

 

Review the Filter Array action outputs. You will need to reference the content keys in the next action. Refer to this section of a YT Tutorial I uploaded on how to get dynamic content from a Filter Array action.

creativeopinion_38-1696095259761.png

Create an HTML Table

There are many ways you can present the information. The easiest way would be to use the Create an HTML table action. 

 

creativeopinion_39-1696095368220.png

In the From field, insert the Body dynamic content from the Filter Array action. Select Custom from the Columns dropdown. 

 

In the Header fields, enter the header text for your columns. In the Value field, insert expressions to return the dynamic content from the Filter Array action. 

 

Use the item() function. Insert the key between the single quotes for the dynamic content you'd like to return.

item()?['']

creativeopinion_42-1696095548067.png

 

creativeopinion_43-1696095625534.png

Run a test. Review the Create HTML Table outputs.

creativeopinion_44-1696095660959.png

 

Send an Email

Add a Send an Email action. Ensure you are adding this action inside the Apply to Each action—as you'll be sending an email to each user you are looping through.

creativeopinion_45-1696095758588.png

Important: Whenever you are testing a flow. Always insert your own email address in the recipient field until you've confirmed the output of your email. 

 

Compose your email using the dynamic content from your previous actions. In my subject line I've used the output of items from the Filter Array action as well as the user's full name.

 

In the body of the email. I always like to add a line to confirm where the email will actually be sent (while i'm testing). This is optional. I've inserted the outputs of the Compose action storing the user's email.

 

I also like to add an indicator to any automated emails that it's in fact an automated email. Especially if it's coming from my email address.

creativeopinion_46-1696095934941.png

 

Get Users First Name

To return the users first name only, you can use an expression. First you need to split the Display Name at the space. Insert a split() function and then insert the compose action that is storing the users Display Name. 

creativeopinion_47-1696096110211.png

 

Add a comma and single quotes with a space (between the single quotes). You'll need to wrap your expression in the first() function to return the first name only (first item from the split string). 

creativeopinion_48-1696096150501.png

Place your cursor at the front of the expression: Tip: Press the up arrow key. Insert:

first( 

creativeopinion_49-1696096186505.png

Go to the end of the expression. Tip: Press the down arrow key. Insert a closing bracket. 

creativeopinion_50-1696096271384.png

 

Run a test. Review the outputs. The HTML table isn't nicest to look at but as I mentioned it's the easiest.

creativeopinion_57-1696097300419.png

 

 

Style the HTML Table

With a bit of simple CSS you can style the table so it looks a bit nicer. Keep in mind—some email clients may not display CSS properly. 

 

Add a Compose action after the Create HTML Table action and insert this CSS.

<style>
table {
width: 100%;
border-collapse: collapse;
}

th, td {
padding: 8px;
text-align: left;
}

th {
background-color: #f2f2f2; /* Light grey background for headers */
font-weight: bold;
color: #333; /* Darker text for headers */
}

</style>

At the bottom of the Compose action, insert the outputs from the Create HTML Table action.

creativeopinion_53-1696097058012.png

In the email body, insert the outputs from the Compose action (instead of the outputs from the Create an HTML Table action).

creativeopinion_56-1696097262677.png

 

creativeopinion_55-1696097241193.png

 

Customize your email to suit your requirements.

 

Adjust Get Items Action

If you've used the Top Count field in your flow, make sure you remove that before you run the flow. If your SP list has more than 100 items, you will need to toggle on Pagination and up the threashold.

creativeopinion_0-1696100425587.png

 

 

Concurrency Control

If you aren't using any variables in your flow. You can speed up the flow run by toggling on the Concurrency Control in the Apply to Each action. Click on the three dots and select Settings. 

 

You can adjust the number to the highest (50). If you are using variables in your flow, you need to leave this off. 

creativeopinion_1-1696100469227.png

 

 

Hope this helps!

If I helped you solve your problem—please mark my post as a solution .
Consider giving me a 👍 if you liked my response!

👉Watch my tutorials on YouTube
👉Tips and Tricks on TikTok

View solution in original post

4 REPLIES 4

@orengaliki To send a single email to each user with their items you need to do the following:

  • Get items with missing approval dates
  • Get a unique list of users who have items assigned to them
  • Loop through each user and send them a list of item assigned to them

Tip: Rename your actions to keep your flow organized!


Get Items with Missing Approval Dates

Add a Get Items action to your flow to return the items from your SP List.

Filter Query

Compose a Filter Query to return the items that meet your criteria. In my case, I'm returning items that do not have a Task Status equal to Complete. In your flow, you are looking for items where the Approval Date is empty.

 

Your Filter Query may look something like:

ApprovalDate eq null

You will need to use the internal column name of your Approval Date column. If you aren’t sure how to get this, please refer to this section of one of my YT tutorials.

 

creativeopinion_5-1696090783762.png

 

Top Count

Depending on how many items you have in your SP List, I would recommend limiting the Top Count to a smaller number than the total number of items in your list. This will increase the speed of your flow runs. Instead of returning all items in your list—it'll limit the Get Items action to the number entered here.

 

creativeopinion_4-1696090676332.png

 

Return Item Count

Whenever I use a Filter Query in a Get Items action, I always like to return the count of items returned in a Compose action. This is helpful when building a flow and can also be used to troubleshoot your flow. 

 

Insert a Compose action. Add an Expression. Use the length() function. 

creativeopinion_0-1696090352231.png

 

Select the Dynamic content tab and insert the value dynamic content from the Get Items action into the length() function. 

creativeopinion_1-1696090392837.png

 

Run a test.

 

Confirm that the number of items returned is what you are expecting. If the number returned is zero this means the Get Items action hasn't returned any items and you may need to adjust the Top Count (if you've used it) or your Filter Query may be incorrect.

 

creativeopinion_6-1696091202031.png

Add a Condition (optional)

This is an optional action that you can add to your flow. If you are always expecting your list to have items that have an empty Approval date you can skip onto the next section.

Add a Condition action to your flow to check if there are any items returned. Insert the outputs from the Compose action above into the first value field. Change the operator to is not equal to and enter a zero into the second value field.

 

This way you can stop the flow from continuing to run if there aren't any items returned. This will prevent your flow from failing if no items are returned.

creativeopinion_15-1696092195065.png

Get List of Unique Users

Next, you'll need to pull the details of each user who has a task assigned to a task returned from the Get Items action. Remember that if you've limited the top count, not all users will be displayed. 

 

Add a Select action. If you are using the Condition action above—insert these actions into the YES branch.

 

In the from field insert the value dynamic content from the Get Items action. You can enter any text you'd like in the Key Column. to keep it simple I've used Name and Email. In their respective value fields, insert the appropriate dynamic content from the Get Items action that returns the Display Name and Email address from the person column.

creativeopinion_25-1696094273274.png

 

Run a test. Review the outputs. You should see an array of users Names and Emails. If you aren't seeing more than one user returned—you may need to adjust your top count to return a more items.

creativeopinion_28-1696094483558.png

 

Get Unique List of Users

Now that you have a list of all the users assigned to each item (from the Get Items action). You need a way to return a list of unique users. You'll need to use a Compose action and an expression. 

creativeopinion_27-1696094398015.png

 

The union() function takes two arrays and combines them into one. 

union([array1],[array2])

 

Click on the dynamic content tab and insert the output from the Select action above (that contains an array of email addresses). Add a comma and insert the output of the Select action above again. 

 

creativeopinion_26-1696094383764.png

 

It will look something like this. 

creativeopinion_13-1696092039419.png

 

Run a test. Confirm that you have a unique array of email addresses.

creativeopinion_29-1696094587128.png

 

Loop through Each Unique User

Since the Compose action is storing an array of users Names and Emails you are able to loop through the array of users with an Apply to Each action.

Compose Current Email

Insert a Compose action to store the email address of the user being looped through. You'll need an expression. To return the content from the current item, you will need to use the key—which is what was entered into the Select action (also it appears in red in the prev screenshot between the double quotes).

 

If you entered a different key than what I entered—you'll need to adjust the expression below to match your key.

 

item()?['Email']

 

creativeopinion_31-1696094755613.png

 

creativeopinion_32-1696094811134.png

Compose Current User Name

Insert a Compose action to store the name of the user being looped through. You'll need an expression—just like above.

creativeopinion_33-1696094839099.png

 

creativeopinion_34-1696094849348.png

 

Run a test. Confirm the outputs of the Compose actions. 

creativeopinion_35-1696094942910.png

 

Get List of Items Assigned to User

Since you've already returned a list of items from your SP list in the root of the flow—you want to avoid using the Get Items action again. Instead, use a Filter Array action to filter out the items for each user currently being looped through. To learn more about how to use the Filter Array action, please refer to this recent YT Tutorial I uploaded. Note: The Scope action is optional. I like to use them in my flows to quickly collapse multiple actions at once. 

 

In the From field, insert the value dynamic content from the Get Items action. Since the Apply to Each action is looping through email addresses, we can use that to compare to the email addresses in the AssignedTo column. In your case it would be the CTC column.

 

Leave the operator as is equal to

 

In the second value field I've inserted the outputs from the Compose that is storing the current users email address.

creativeopinion_40-1696095417956.png

 

Add a Compose action to store the length of items returned from the Filter Array action. 

Insert the body outputs from the Filter Array action into the length() function.

creativeopinion_20-1696093718683.png

creativeopinion_22-1696093781274.png

Run a test. Confirm that the Apply to Each action is looping through each email address and returning the appropriate number of items assigned to that user.

creativeopinion_37-1696095047639.png

 

Review the Filter Array action outputs. You will need to reference the content keys in the next action. Refer to this section of a YT Tutorial I uploaded on how to get dynamic content from a Filter Array action.

creativeopinion_38-1696095259761.png

Create an HTML Table

There are many ways you can present the information. The easiest way would be to use the Create an HTML table action. 

 

creativeopinion_39-1696095368220.png

In the From field, insert the Body dynamic content from the Filter Array action. Select Custom from the Columns dropdown. 

 

In the Header fields, enter the header text for your columns. In the Value field, insert expressions to return the dynamic content from the Filter Array action. 

 

Use the item() function. Insert the key between the single quotes for the dynamic content you'd like to return.

item()?['']

creativeopinion_42-1696095548067.png

 

creativeopinion_43-1696095625534.png

Run a test. Review the Create HTML Table outputs.

creativeopinion_44-1696095660959.png

 

Send an Email

Add a Send an Email action. Ensure you are adding this action inside the Apply to Each action—as you'll be sending an email to each user you are looping through.

creativeopinion_45-1696095758588.png

Important: Whenever you are testing a flow. Always insert your own email address in the recipient field until you've confirmed the output of your email. 

 

Compose your email using the dynamic content from your previous actions. In my subject line I've used the output of items from the Filter Array action as well as the user's full name.

 

In the body of the email. I always like to add a line to confirm where the email will actually be sent (while i'm testing). This is optional. I've inserted the outputs of the Compose action storing the user's email.

 

I also like to add an indicator to any automated emails that it's in fact an automated email. Especially if it's coming from my email address.

creativeopinion_46-1696095934941.png

 

Get Users First Name

To return the users first name only, you can use an expression. First you need to split the Display Name at the space. Insert a split() function and then insert the compose action that is storing the users Display Name. 

creativeopinion_47-1696096110211.png

 

Add a comma and single quotes with a space (between the single quotes). You'll need to wrap your expression in the first() function to return the first name only (first item from the split string). 

creativeopinion_48-1696096150501.png

Place your cursor at the front of the expression: Tip: Press the up arrow key. Insert:

first( 

creativeopinion_49-1696096186505.png

Go to the end of the expression. Tip: Press the down arrow key. Insert a closing bracket. 

creativeopinion_50-1696096271384.png

 

Run a test. Review the outputs. The HTML table isn't nicest to look at but as I mentioned it's the easiest.

creativeopinion_57-1696097300419.png

 

 

Style the HTML Table

With a bit of simple CSS you can style the table so it looks a bit nicer. Keep in mind—some email clients may not display CSS properly. 

 

Add a Compose action after the Create HTML Table action and insert this CSS.

<style>
table {
width: 100%;
border-collapse: collapse;
}

th, td {
padding: 8px;
text-align: left;
}

th {
background-color: #f2f2f2; /* Light grey background for headers */
font-weight: bold;
color: #333; /* Darker text for headers */
}

</style>

At the bottom of the Compose action, insert the outputs from the Create HTML Table action.

creativeopinion_53-1696097058012.png

In the email body, insert the outputs from the Compose action (instead of the outputs from the Create an HTML Table action).

creativeopinion_56-1696097262677.png

 

creativeopinion_55-1696097241193.png

 

Customize your email to suit your requirements.

 

Adjust Get Items Action

If you've used the Top Count field in your flow, make sure you remove that before you run the flow. If your SP list has more than 100 items, you will need to toggle on Pagination and up the threashold.

creativeopinion_0-1696100425587.png

 

 

Concurrency Control

If you aren't using any variables in your flow. You can speed up the flow run by toggling on the Concurrency Control in the Apply to Each action. Click on the three dots and select Settings. 

 

You can adjust the number to the highest (50). If you are using variables in your flow, you need to leave this off. 

creativeopinion_1-1696100469227.png

 

 

Hope this helps!

If I helped you solve your problem—please mark my post as a solution .
Consider giving me a 👍 if you liked my response!

👉Watch my tutorials on YouTube
👉Tips and Tricks on TikTok

Thank you so much @creativeopinion  for your detailed reply! I have followed your instructions and successfully created this scheduled flow. 

I simply love this community!

One last question: When the flow will be ready to be sent to the users, I just use the 'Compose- Current user email' in the "To"?

orengaliki_0-1696600880327.png

 

Thanks again!

 

@orengaliki You're welcome—that's great to hear.

 

That's correct. Or you can use the expression. It's up to you. However, I find that it can be a bit more clear when you use Compose actions to store dynamic content expressions. This way you can run a test to verify the outputs before using it in your flow. 

Thanks! 

and to make things even better for people who don't use the default date format, I have modified the format for ddMMMYYYY in the following expression:

 

FormatDateTime(item()?['field_3'], 'dd-MMM-yyyy')​

 

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,840)