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

Issue with several conditions

Hey everyone,

I'm stugling with a condition within one of my newly creates flows.

What should it do:
I'm getting al projects on Project Online and check first if they got an SharePoint list item id.

If that is true my flow should get that specific item and check if one of the defined field content is different to the ones I got from project online.

Only if one of the field content is different the flow should update the SharePoint List item.

All others should be skipped.

After running it all items will be updated. I checked several projects and the field content was exactly the same but it still was in the update routine.

Does anyone have any idea where my mistake might be?

Edit-your-flow-Power-Automate.png

1 ACCEPTED SOLUTION

Accepted Solutions
royg
Impactful Individual
Impactful Individual

Getting closer.

The OData Filter requires the field internal names on the left and text values on the right of each comparison, for example ProjectOwner ne 'Roy' .

Note - no spaces in field names!

You can get the internal names from the outputs of an unfiltered call.

View solution in original post

37 REPLIES 37
royg
Impactful Individual
Impactful Individual

Hi @smorph,

It's really hard to analyze the image. Can you please Copy the Condition to clipboard and paste the contents here?

You probably compare SP Item field with the corresponding Project field but need to select the SP Item field/value.

 

Hope this helps  

Hey @royg ,

 

thanks for getting back.
Here the code, hopefully it helps.

{
  "type": "If",
  "expression": {
    "or": [
      {
        "not": {
          "equals": [
            "@outputs('Get_item_-_Listeneintrag_abrufen')?['body/Title']",
            "@items('Apply_to_each')?['ProjectName']"
          ]
        }
      },
      {
        "not": {
          "equals": [
            "@outputs('Get_item_-_Listeneintrag_abrufen')?['body/SOLL_x002d_Zustand']",
            "@items('Apply_to_each')?['SOLLZustand']"
          ]
        }
      },
      {
        "not": {
          "equals": [
            "@outputs('Get_item_-_Listeneintrag_abrufen')?['body/avisiertes_x0020_Enddatum']",
            "@items('Apply_to_each')?['ProjectFinishDate']"
          ]
        }
      },
      {
        "not": {
          "equals": [
            "@outputs('Get_item_-_Listeneintrag_abrufen')?['body/Auftraggeber/DisplayName']",
            "@items('Apply_to_each')?['Auftraggeber']"
          ]
        }
      },
      {
        "not": {
          "equals": [
            "@outputs('Get_item_-_Listeneintrag_abrufen')?['body/Manager/DisplayName']",
            "@items('Apply_to_each')?['ProjectOwnerName']"
          ]
        }
      },
      {
        "not": {
          "equals": [
            "@outputs('Get_item_-_Listeneintrag_abrufen')?['body/Phase/Value']",
            "@items('Apply_to_each')?['Phase']"
          ]
        }
      }
    ]
  }


After checking the conditions I was only able to find the field/value, as suggested for the field phase, for that one I already used it.

Hi, @smorph, I'm wondering if you can't achieve what you want using an ODATA filter on your original HTTP request (assuming that it is from a list/library), as that would eliminate the need to perform the condition action you are performing, perhaps.

 

Something like the following on the end of your original HTTP request might filter it to only items with non-null 'VorhabenlisteID' values:

?$filter=VorhabenlisteID ne null

Then you would only have results that have that data.

 

Once you have that data, you could then just run your Apply to each / For each action on the results.

 

I suspect that you are potentially having issues when some of the data that you are trying to input is not present.

 

To get around this I would suggest that you use a Select to make entry bodies that you will then use in an HTTP update inside the Apply to each / For each action which will run on the results of the new Select action. This way it only updates the fields that it has data for.

 

Hey @eliotcole ,

the filter idea might be a solution, but not at that step you suggested, there I'm not having any issues.
Why do i need there a condition action:
If "VorhabenlisteID eq null" is true, the flow has to create a new list item within my SharePoint list.

 

If it's not true then the flow should check if any of the available item fields are different to the ones I'm getting via my http request, and then update these items.

Let me check the filter idea.

Hi @smorph,

What immediately catches my eye is date comparison. Getting the dates from Project Online will return the date + time of the entities e.g. if a Task/Projects ends on 2023-01-30, it will return 2023-01-30 17:00.

Not sure what you store in SharePoint but if this field is configured not to store time, you compare a DateTime with a Date and that returns false!

try formatting both dates to yyyy/mm/dd and see what happens.

 

Also, you might want to lower-case when compraing string values (If for example the Project Owner names are not the same values stored in SharePoint).

 

Hope it helps 

@royg ,

yep seen that as well with the filter query suggested by @eliotcole .
But I'm not able to use formatdatetime() on that specific field because it's then missing...

Without any expression I'm able to choose it but within a expression there are only the "Body" and "Value" returns of my parse json action available.

@eliotcole 

after recreating the flow I was able to create the Get Items action.

But it seemed I messed up the filter query. 🙄

 

Edit-your-flow-Power-Automate (1).png

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

There is no difference if I put the dynamic fields in ' ' or leave them.
The error message is: The $filter expression is not valid. Creating query failed

For testing purpose I changed on an already closed project the "Auftraggeber" and the both fields (item and project) are definitely different.

Start bracketing some of those conditions, there, could maybe help you, @smorph ...

 

I can't look at this right now in detail ... but I'm going to take a wild swing that *still* you are potentially reacting to information that might have no data.

 

What I'm trying to say is that putting all that inside your condition, whether it is in an ODATA filter, a condition action, or a filter action, it will fail if SharePoint don't have the information to feed it.

 

I'll see if I can drum you up an example ... but if there is any more of your flow design that you can slide into the original question, it could provide a little more to work with here. (sorry to ask ... no pressure!)

Also, I've just noticed that you are adding data to 'Claims' fields, @smorph ...

 

I believe that these will require specific information to be added in them in a specific way. You will need to be entering an array of strings which look something like this:

 

[
  "i:0#.f|membership|name@domain.com",
  "i:0#.f|membership|name@domain.com",
  "i:0#.f|membership|name@domain.com"
]

 

Those are just users, groups have a different lookielikie.

 


 

Also, in your initial action named 'Send an HTTP request to SharePoint - Vorhabenauflistung' is that just a simple list query, or are you actually sending an API request to Microsoft Project or Planner there?

 

If we could see that and/or have a (sanitised) version of what it spits out, that will really help. 👍

Focus on the dates, that's where I'd put my money

Also, replace your "null" value in the 'Condition - Listen item vorhanden' Condition action with this... and paste this in don't type it:

 

 

 

@null

 

 

Sorry, also ... are the two people columns in SharePoint for single selections, or multiple selections of people?

Apologies for the double post, but it has been a little while since the last one, and I wanted to ensure that you weren't typing or something. I'm just after a bit of information so that I can accurately help you out, here. I think I have the beginnings of a solution. I require two pieces of information:

  1. Peek Code On Update item action
  2. Schema Of The 'Parse JSON - Projecktauflistung' action

 

Schema Of The 'Parse JSON - Projecktauflistung' action

Could you also include a code entry with the schema value 'Parse JSON - Projecktauflistung' action, please?

 

There is information which I am looking for and need to know how to address it, here. I have never seen Project Online API responses, and couldn't easily locate examples. 🙁

 

Peek Code On Update item - Listeneintrag aktualisieren Action

Could you also do a 'Peek code' on your 'Update item - Listeneintrag aktualisieren' action and copy the contents of the parameters key value, please? (tap the menu on the action and select 'Peek code' there)

 

You do not need to include the 'dataset' value, or the 'table' value. You can/should keep a copy of the table value, as that is the List ID, and you can use that always accurately call the list with HTML calls. It's better than using the list name. I usually place it in a variable at the start of any flow called 'ListIdVAR' so that I can use it in the flow.

 

The parameters (without dataset+table) should look something like this:

 

 

{
	"id": 7,
	"item/Title": "a",
	"item/choiceuno/Value": "Chuck",
	"item/choicedos/Value": "JESSI",
	"item/Status/Value": "New",
	"item/sharedtokenstring": "a",
	"item/Pa_x00ed_s": "a",
	"item/Names": "a",
	"item/Auftraggeber/Claims": "i:0#.f|membership|name@domain.com",
	"item/Assigned_x0020_to": [
		{
			"Claims": "i:0#.f|membership|name@domain.com"
		}
	],
	"item/choicea/Id": 2,
	"item/choiceb/Id": 3
}

 

 

That is one of mine.

 


 

Also, not for nothing, since you are not doing all of this in Select or Filter actions, you might as well separate out each thing that you want to check with its own condition.

 

So, instead of the full 'Condition - Eintrage unterschiedlich' action, make a condition for each thing you are checking in that condition. Because you should first be ensuring that the item is not null in the Apply to each anyway.

 

Then if it is due an update, update the item with just that individual piece of data. If this is going the long way around ... might as well use that to find out where your problems are.

 

At least this way you will quickly identify which part is the problem.

Hey @eliotcole , @royg ,

Thanks for your time and effort, a lot of input from your side i needed to check and test them out.

 

The initial idea was to use one condition, or the suggested filter option, to avoid several condition branches.

It would make the flow more complex than it in my opinion need to be.

 

For me it's not important only to change that one field which is different. It's ok for me to update the whole item if one or more fields are different.

After deleting the filter expression to only one I still get the same error message

 

 

The $filter expression is not valid. Creating query failed

 

 

In this testcase the both fields were equal.

 

The next test was to check not equal fields, that's the same error message

 

 

The $filter expression is not valid. Creating query failed

 

 

It seems to be a general issue with my filter expression.

 


Let's have a look into the whole flow and the branch which has the issue as request @eliotcole 

1. Reccurance
Nothign mor to say here

 

2. Get all Projects form Project Online via HTTP

Edit-your-flow-Power-Automate.png

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

{
  "type": "OpenApiConnection",
  "inputs": {
    "parameters": {
      "dataset": "@parameters('URL-PWA (iasit_URLPWA)')",
      "parameters/method": "GET",
      "parameters/uri": "_api/ProjectData/[en-us]/Projects?$select=ProjectId,ProjectIdentifier,ProjectName,SOLLZustand,EnterpriseProjectTypeName,Phase,ProjectStartDate,ProjectFinishDate,Auftraggeber,ProjectOwnerName,VorhabenlisteID,Unternehmen&$filter=ProjectName ne 'Arbeitszeittabelle administrative Arbeitsaufgaben' and (EnterpriseProjectTypeId ne guid'@{parameters('EnterpriseProjectTypeId-Abwesenheiten (iasit_EnterpriseProjectTypeIdAbwesenheiten)')}' and EnterpriseProjectTypeId ne guid'@{parameters('EnterpriseProjectTypeId-Administrativ (iasit_EnterpriseProjectTypeIdAdministrativ)')}' and EnterpriseProjectTypeId ne guid'@{parameters('EnterpriseProjectTypeId-Test (iasit_EnterpriseProjectTypeIdTest)')}')",
      "parameters/headers": {
        "accept": "application/json"
      }
    },
    "host": {
      "apiId": "/providers/Microsoft.PowerApps/apis/shared_sharepointonline",
      "connection": "shared_sharepointonline",
      "operationId": "HttpRequest"
    }
  },
  "runAfter": {},
  "metadata": {
    "operationMetadataId": "xxxx"
  }
}

 

 

Within I filter already one specific project and a few project types out.

3. Parse JSON of above action
Edit-your-flow-Power-Automate.png

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

{
  "type": "ParseJson",
  "inputs": {
    "content": "@body('Send_an_HTTP_request_to_SharePoint_-_Vorhabenauflistung')",
    "schema": {
      "type": "object",
      "properties": {
        "odata.metadata": {
          "type": "string"
        },
        "value": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "ProjectId": {
                "type": "string"
              },
              "EnterpriseProjectTypeName": {
                "type": "string"
              },
              "ProjectFinishDate": {
                "type": "string"
              },
              "ProjectIdentifier": {
                "type": "string"
              },
              "ProjectName": {
                "type": "string"
              },
              "ProjectOwnerName": {
                "type": "string"
              },
              "ProjectStartDate": {
                "type": "string"
              },
              "Unternehmen": {
                "type": "string"
              },
              "Auftraggeber": {
                "type": "string"
              },
              "SOLLZustand": {},
              "Phase": {
                "type": "string"
              },
              "VorhabenlisteID": {}
            },
            "required": [
              "ProjectId",
              "EnterpriseProjectTypeName",
              "ProjectFinishDate",
              "ProjectIdentifier",
              "ProjectName",
              "ProjectOwnerName",
              "ProjectStartDate",
              "Unternehmen",
              "Auftraggeber",
              "SOLLZustand",
              "Phase",
              "VorhabenlisteID"
            ]
          }
        }
      }
    }
  },
  "runAfter": {
    "Send_an_HTTP_request_to_SharePoint_-_Vorhabenauflistung": [
      "Succeeded"
    ]
  },
  "metadata": {
    "operationMetadataId": "xxxx"
  }
}

 

 

 

4. First Condition to check if any Project doenst' have a VorhabenlisteID, which is there to connect project and list item
Edit-your-flow-Power-Automate.png

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

@eliotcole I changed the eq condition to your suggested one, but that wasn't the issue.

The "yes" branch works very well. It's the "no" branch.

 

5. Need to get first all Items in that list to use fields later as dynamic content

Edit-your-flow-Power-Automate.png

 

 

 

 

 

 

 

 

 

 

 

{
  "type": "OpenApiConnection",
  "inputs": {
    "parameters": {
      "dataset": "https://xxxx.sharepoint.com/teams/xxxx",
      "table": "xxxx",
      "id": "@items('Apply_to_each')?['VorhabenlisteID']",
      "view": "xxxx"
    },
    "host": {
      "apiId": "/providers/Microsoft.PowerApps/apis/shared_sharepointonline",
      "connection": "shared_sharepointonline",
      "operationId": "GetItem"
    }
  },
  "metadata": {
    "operationMetadataId": "xxxx"
  }
}

 

 

Here the flow still works very well, except of that suggested issue form @eliotcole , if a field has no value the flow stops here for that specific item. But that's another story which has nothing to do with my main issue and can be solved very quickly.

6. Filtering all Items on which one or more field values are different to the project online ones
Edit-your-flow-Power-Automate.png

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

{
  "type": "OpenApiConnection",
  "inputs": {
    "parameters": {
      "dataset": "https://xxxx.sharepoint.com/teams/xxxx",
      "table": "xxxx",
      "$filter": "?$filter= @{body('Get_item_-_Listeneintrag_abrufen')?['Auftraggeber']?['DisplayName']} ne @{items('Apply_to_each')?['Auftraggeber']}",
      "view": "xxxx"
    },
    "host": {
      "apiId": "/providers/Microsoft.PowerApps/apis/shared_sharepointonline",
      "connection": "shared_sharepointonline",
      "operationId": "GetItems"
    }
  },
  "runAfter": {
    "Get_item_-_Listeneintrag_abrufen": [
      "Succeeded"
    ]
  },
  "metadata": {
    "operationMetadataId": "xxxx"
  }
}

 

 

The code is now from my last testing but it's similar to the above with mor fields.
Doublecheck the "Auftraggeber" values and already used "DisplayName" instead of "Claims". @royg I even changed the date format as suggested but I will get the above mentioned error message.

And here the whole flow stops.

royg
Impactful Individual
Impactful Individual

Hi @smorph,

When filtering SharePoint Get Items action, you don't need to provide the "?$filter=" initial, please remove that part

@royg done as suggested, the error message changed now to "The expression is not valid".

{
  "dataset": "https://xxxx.sharepoint.com/teams/xxxx",
  "table": "xxxx",
  "$filter": "[Name A] ne [Name B]",
  "view": "xxxx"
}

 

{
  "status": 400,
  "message": "The expression \"[Name A] ne [Name B]\" is not valid. Creating query failed.\r\nclientRequestId: xxxx\r\nserviceRequestId: xxxx"
}

 

It's the same with any other field.

Hi, @smorph, part of my solution (when it comes) will require a couple of things ... so if you can get those it would really assist. 🙂

 

Project Data

Owner ID

If you could add 'ProjectOwnerId' to the select you are using in 'Send an HTTP request to SharePoint - Vorhabenauflistung' action, that would really help.

 

Auftraggeber ID

Also, if you are able to get the ID of the user defined in this field, that would be great. My mistake, I just did a search on this ... I thought this was a user field. If this is

 

List Data

List ID

Also, if you could retrieve the List ID for the target list and store it in a variable named the following that would also be great:

ListIdVAR

You can get this *really* easily, just open up the list settings in SharePoint, and if you look at the URL it will end with either of the following:

  • List={LIST_ID}
  • List=%7BLIST_ID%7D

We just need the bits between the '{' + '}' or between the '%7B' and the '%7D' in the new variable. 👍

 

I will detail all this again inside my solution.

 

Column Types

Could you send a screenshot of the List Settings screen showing the column names and types?

 

I want to ensure that the data being entered is being done so correctly.

 

As you can see with my edits above I'm having trouble with your 'Auftraggeber' ('Client') information, in both your Project and in your list.

 

It is clear from your data above that:

  • In Project - The 'Auftraggeber' key appears to be plain text
  • In List - The 'Auftraggeber' column is either:
    • ... a 'Lookup' type column
    • ... a 'Person' type column

What I need to ensure is that this data is accurately resolved. If it is a Person column it's a lot harder with just the name to get accurate information, if it is a Lookup, then I would hope that the 'Auftraggeber' list has unique values for the client information.

royg
Impactful Individual
Impactful Individual

Getting closer.

The OData Filter requires the field internal names on the left and text values on the right of each comparison, for example ProjectOwner ne 'Roy' .

Note - no spaces in field names!

You can get the internal names from the outputs of an unfiltered call.

I already worked with the internal name especially witch custom fields. But only for updating them.

 

I'm not sure how this will solve my issue, could you @royg  please explain a bit further?

I like to compare the project field value with item field value.

If i use like "[project_internalname] ne [smorph]" that will everytime be not true because the project field is [smorph], even if it's changed, which happens before the flow runs.

 

 

 

For the Auftraggeber there is no ID available, it's a custom field just as text.
The ProjectOwner field is a PeoplePicker, but not the one for Auftraggeber, sadly there seems to be no way to get a PeoplePicker for a custom field.

I see where you @eliotcole want to go with the User ID, but is this neccessary?
When I run my "yes" branch with creating a new item, SharePoint has no issue resolve display name to the specific claims.

I know that if there is anytime someone with the exact same display name, I would run in an issue, but that's part for the future smorph to solve.


I will add the List ID.
Awaiting your solution suggestion.

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