cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
elabaigt
Helper II
Helper II

Error parsing JSON string to Datetime format (Power BI)

Hello,

 

I have a parsing problem with my JSON parse after launching the test Flow send to me that there is a parse problem like the photos below:

aide_1.PNGaide_2.PNGaide_3.PNG

 

I don't know why the JSON block don't want to parse my string into a datetime with this type of format YYYY-mm-ddThh:mm:ssZ

 

My JSON is like this:

json.PNG

 

Please help me !

 

Thank you in advance.

 

If you need more details tell me

41 REPLIES 41

Hey @elabaigt 

 

Simply use the intialise variable action in the beginning of the flow and then set variable action later on. BTW, you will not need these. Can you share a sample data of the get request that you are sending to powerBi? I am guessing there is some small mistake that is stopping us. 

 

@yashag2255 Sorry for the late reply

 

Yes I can this is what I try to get:

{"data":[{"id":"PV_DC","base":[{"date":"2019-06-11T00:15:00Z","value":0.0,"state":"A"},

The JSON response is correct but when the flow enter into the apply to each the flow is loading until the timeout.

Why the flow is doing this ?

@elabaigt 

Can you please share a screenshot of the flow time out and the apply to each action?

@yashag2255 

For sure:

timedout.PNGapply to each.PNG

@elabaigt 

 


@elabaigt wrote:

@yashag2255 Sorry for the late reply

 

Yes I can this is what I try to get:

{"data":[{"id":"PV_DC","base":[{"date":"2019-06-11T00:15:00Z","value":0.0,"state":"A"},

The JSON response is correct but when the flow enter into the apply to each the flow is loading until the timeout.

Why the flow is doing this ?


This is incorrect JSON. The brackets/ paranthesis and arrays are left open. can you confirm the data formatting? 

BTW, the above JSON should be like this: 

{
"data":
[
{
"id":"PV_DC",
"base":
[
{
"date":"2019-06-11T00:15:00Z",
"value":0.0,
"state":"A"
}
]
}
]
}

only the it will map appropriate array/ string values

 

Hope this Helps!

@yashag2255 

 

Yes sorry ofr this misunderstand, I have the second format that you wrote it's just a little part of my JSON. My JSON is very big and I forget to put the parenthesis 

@elabaigt 

Ohh Okay! Can you share the expression being used in the "format date time"

I also want to confirm the JSON schema if it is missing something so can you post a screenshot of the Json schema?

 

Did you manually enter the details in powerbi action or selected those from the drop down? 

@yashag2255 

 

This the format datetime : 

formatDateTime(items('Apply_to_each')?['date'],'yyyy-MM-dd''T''hh:mm:ss')
For the JSON schema :
{
    "type": "object",
    "properties": {
        "data": {
            "type": "array",
            "items": {
                "type": "object",
                "properties": {
                    "id": {
                        "type": "string"
                    },
                    "base": {
                        "type": "array",
                        "items": {
                            "type": "object",
                            "properties": {
                                "date": {
                                    "type": "string"
                                },
                                "value": {
                                    "type": "number"
                                },
                                "state": {
                                    "type": "string"
                                }
                            },
                            "required": [
                                "date",
                                "value",
                                "state"
                            ]
                        }
                    }
                },
                "required": [
                    "id",
                    "base"
                ]
            }
        },
        "success": {
            "type": "boolean"
        },
        "message": {
            "type": "object",
            "properties": {
                "code": {
                    "type": "integer"
                },
                "text": {
                    "type": "string"
                }
            }
        }
    }
}
I select the parameters from the drop down

Hey @elabaigt 

 

There are many issues with the JSON Schema. So we have to set that right for this flow to work. And we can do that if you can share a sample data of what you want to parse. I see many unnecssary things in here that are not needed and are blocking the way for the other variables. If you could share with me some sample data (whatever is coming from your http request remove all the sensitive info and replace that with soem test values) and that way we might be able to solve this issue. 

 

Hope this Helps!

@yashag2255 

 

Ok the issues that are in the JSON schema is created by MS Flow and his sample.

 

What did you mean with share sample data ?

 

Do you need an example with my URL or just a piece of data from my JSON base ?

@elabaigt 

It so happens that the data coming in has multiple arrays that need to be parsed (some of those might not be used in the data actually or is repeated) if you can share the part of the json that you are getiing from the HTTP request, it will be easier to create appropriate schema.  

Hi @yashag2255 ,

 

Thanks a lot for your reply and the sorry for the late reply.

 

Here it is the sample that I get from the HTTP request:

{"data":[{"id":"PV_POWER","base":[{"date":"2019-06-17T00:15:00Z","value":0.0,"state":"A"},{"date":"2019-06-17T00:30:00Z","value":0.0,"state":"A"},{"date":"2019-06-17T00:45:00Z","value":0.0,"state":"A"},{"date":"2019-06-17T01:00:00Z","value":0.0,"state":"A"},{"date":"2019-06-17T01:15:00Z","value":0.0,"state":"A"},{"date":"2019-06-17T01:30:00Z","value":0.0,"state":"A"},{"date":"2019-06-17T01:45:00Z","value":0.0,"state":"A"},{"date":"2019-06-17T02:00:00Z","value":0.0,"state":"A"},{"date":"2019-06-17T02:15:00Z","value":0.0,"state":"A"},{"date":"2019-06-17T02:30:00Z","value":0.0,"state":"A"},{"date":"2019-06-17T02:45:00Z","value":0.0,"state":"A"},{"date":"2019-06-17T03:00:00Z","value":0.0,"state":"A"},{"date":"2019-06-17T03:15:00Z","value":0.0,"state":"A"},{"date":"2019-06-17T03:30:00Z","value":0.0,"state":"A"},{"date":"2019-06-17T03:45:00Z","value":8.0,"state":"A"},{"date":"2019-06-17T04:00:00Z","value":16.0,"state":"A"},{"date":"2019-06-17T04:15:00Z","value":23.0,"state":"A"},{"date":"2019-06-17T04:30:00Z","value":36.0,"state":"A"},{"date":"2019-06-17T04:45:00Z","value":47.0,"state":"A"},{"date":"2019-06-17T05:00:00Z","value":56.0,"state":"A"},{"date":"2019-06-17T05:15:00Z","value":66.0,"state":"A"},{"date":"2019-06-17T05:30:00Z","value":73.0,"state":"A"},{"date":"2019-06-17T05:45:00Z","value":81.0,"state":"A"},{"date":"2019-06-17T06:00:00Z","value":90.0,"state":"A"},{"date":"2019-06-17T06:15:00Z","value":95.0,"state":"A"},{"date":"2019-06-17T06:30:00Z","value":107.0,"state":"A"},{"date":"2019-06-17T06:45:00Z","value":118.0,"state":"A"},{"date":"2019-06-17T07:00:00Z","value":129.0,"state":"A"},{"date":"2019-06-17T07:15:00Z","value":133.0,"state":"A"},{"date":"2019-06-17T07:30:00Z","value":145.0,"state":"A"},{"date":"2019-06-17T07:45:00Z","value":152.0,"state":"A"},{"date":"2019-06-17T08:00:00Z","value":182.0,"state":"A"},{"date":"2019-06-17T08:15:00Z","value":240.0,"state":"A"},{"date":"2019-06-17T08:30:00Z","value":395.0,"state":"A"},{"date":"2019-06-17T08:45:00Z","value":683.0,"state":"A"},{"date":"2019-06-17T09:00:00Z","value":915.0,"state":"A"},{"date":"2019-06-17T09:15:00Z","value":1143.0,"state":"A"},{"date":"2019-06-17T09:30:00Z","value":1606.0,"state":"A"},{"date":"2019-06-17T09:45:00Z","value":990.0,"state":"A"},{"date":"2019-06-17T10:00:00Z","value":1010.0,"state":"A"},{"date":"2019-06-17T10:15:00Z","value":712.0,"state":"A"},{"date":"2019-06-17T10:30:00Z","value":1094.0,"state":"A"},{"date":"2019-06-17T10:45:00Z","value":764.0,"state":"A"},{"date":"2019-06-17T11:00:00Z","value":614.0,"state":"A"},{"date":"2019-06-17T11:15:00Z","value":612.0,"state":"A"},{"date":"2019-06-17T11:30:00Z","value":572.0,"state":"A"},{"date":"2019-06-17T11:45:00Z","value":508.0,"state":"A"},{"date":"2019-06-17T12:00:00Z","value":437.0,"state":"A"},{"date":"2019-06-17T12:15:00Z","value":368.0,"state":"A"},{"date":"2019-06-17T12:30:00Z","value":336.0,"state":"A"},{"date":"2019-06-17T12:45:00Z","value":319.0,"state":"A"},{"date":"2019-06-17T13:00:00Z","value":292.0,"state":"A"},{"date":"2019-06-17T13:15:00Z","value":295.0,"state":"A"},{"date":"2019-06-17T13:30:00Z","value":287.0,"state":"A"},{"date":"2019-06-17T13:45:00Z","value":282.0,"state":"A"},{"date":"2019-06-17T14:00:00Z","value":259.0,"state":"A"},{"date":"2019-06-17T14:15:00Z","value":257.0,"state":"A"},{"date":"2019-06-17T14:30:00Z","value":266.0,"state":"A"},{"date":"2019-06-17T14:45:00Z","value":261.0,"state":"A"},{"date":"2019-06-17T15:00:00Z","value":248.0,"state":"A"},{"date":"2019-06-17T15:15:00Z","value":258.0,"state":"A"},{"date":"2019-06-17T15:30:00Z","value":257.0,"state":"A"},{"date":"2019-06-17T15:45:00Z","value":255.0,"state":"A"},{"date":"2019-06-17T16:00:00Z","value":242.0,"state":"A"},{"date":"2019-06-17T16:15:00Z","value":253.0,"state":"A"},{"date":"2019-06-17T16:30:00Z","value":253.0,"state":"A"},{"date":"2019-06-17T16:45:00Z","value":252.0,"state":"A"},{"date":"2019-06-17T17:00:00Z","value":237.0,"state":"A"},{"date":"2019-06-17T17:15:00Z","value":252.0,"state":"A"},{"date":"2019-06-17T17:30:00Z","value":248.0,"state":"A"},{"date":"2019-06-17T17:45:00Z","value":229.0,"state":"A"},{"date":"2019-06-17T18:00:00Z","value":199.0,"state":"A"},{"date":"2019-06-17T18:15:00Z","value":162.0,"state":"A"},{"date":"2019-06-17T18:30:00Z","value":128.0,"state":"A"},{"date":"2019-06-17T18:45:00Z","value":87.0,"state":"A"},{"date":"2019-06-17T19:00:00Z","value":75.0,"state":"A"},{"date":"2019-06-17T19:15:00Z","value":59.0,"state":"A"},{"date":"2019-06-17T19:30:00Z","value":35.0,"state":"A"},{"date":"2019-06-17T19:45:00Z","value":24.0,"state":"A"},{"date":"2019-06-17T20:00:00Z","value":15.0,"state":"A"},{"date":"2019-06-17T20:15:00Z","value":9.0,"state":"A"},{"date":"2019-06-17T20:30:00Z","value":1.0,"state":"A"},{"date":"2019-06-17T20:45:00Z","value":0.0,"state":"A"},{"date":"2019-06-17T21:00:00Z","value":0.0,"state":"A"},{"date":"2019-06-17T21:15:00Z","value":0.0,"state":"A"},{"date":"2019-06-17T21:30:00Z","value":0.0,"state":"A"},{"date":"2019-06-17T21:45:00Z","value":0.0,"state":"A"},{"date":"2019-06-17T22:00:00Z","value":0.0,"state":"A"},{"date":"2019-06-17T22:15:00Z","value":0.0,"state":"A"},{"date":"2019-06-17T22:30:00Z","value":0.0,"state":"A"},{"date":"2019-06-17T22:45:00Z","value":0.0,"state":"A"},{"date":"2019-06-17T23:00:00Z","value":0.0,"state":"A"},{"date":"2019-06-17T23:15:00Z","value":0.0,"state":"A"},{"date":"2019-06-17T23:30:00Z","value":0.0,"state":"A"},{"date":"2019-06-17T23:45:00Z","value":0.0,"state":"A"},{"date":"2019-06-18T00:00:00Z","value":0.0,"state":"A"},{"date":"2019-06-18T00:15:00Z","value":0.0,"state":"A"},{"date":"2019-06-18T00:30:00Z","value":0.0,"state":"A"},{"date":"2019-06-18T00:45:00Z","value":0.0,"state":"A"},{"date":"2019-06-18T01:00:00Z","value":0.0,"state":"A"},{"date":"2019-06-18T01:15:00Z","value":0.0,"state":"A"},{"date":"2019-06-18T01:30:00Z","value":0.0,"state":"A"},{"date":"2019-06-18T01:45:00Z","value":0.0,"state":"A"},{"date":"2019-06-18T02:00:00Z","value":0.0,"state":"A"},{"date":"2019-06-18T02:15:00Z","value":0.0,"state":"A"},{"date":"2019-06-18T02:30:00Z","value":0.0,"state":"A"},{"date":"2019-06-18T02:45:00Z","value":0.0,"state":"A"},{"date":"2019-06-18T03:00:00Z","value":0.0,"state":"A"},{"date":"2019-06-18T03:15:00Z","value":0.0,"state":"A"},{"date":"2019-06-18T03:30:00Z","value":0.0,"state":"A"},{"date":"2019-06-18T03:45:00Z","value":14.0,"state":"A"},{"date":"2019-06-18T04:00:00Z","value":20.0,"state":"A"},{"date":"2019-06-18T04:15:00Z","value":27.0,"state":"A"},{"date":"2019-06-18T04:30:00Z","value":40.0,"state":"A"},{"date":"2019-06-18T04:45:00Z","value":58.0,"state":"A"},{"date":"2019-06-18T05:00:00Z","value":111.0,"state":"A"},{"date":"2019-06-18T05:15:00Z","value":111.0,"state":"A"},{"date":"2019-06-18T05:30:00Z","value":195.0,"state":"A"},{"date":"2019-06-18T05:45:00Z","value":148.0,"state":"A"},{"date":"2019-06-18T06:00:00Z","value":182.0,"state":"A"},{"date":"2019-06-18T06:15:00Z","value":275.0,"state":"A"},{"date":"2019-06-18T06:30:00Z","value":391.0,"state":"A"},{"date":"2019-06-18T06:45:00Z","value":382.0,"state":"A"},{"date":"2019-06-18T07:00:00Z","value":389.0,"state":"A"},{"date":"2019-06-18T07:15:00Z","value":492.0,"state":"A"},{"date":"2019-06-18T07:30:00Z","value":494.0,"state":"A"},{"date":"2019-06-18T07:45:00Z","value":469.0,"state":"A"},{"date":"2019-06-18T08:00:00Z","value":536.0,"state":"A"},{"date":"2019-06-18T08:15:00Z","value":706.0,"state":"A"},{"date":"2019-06-18T08:30:00Z","value":790.0,"state":"A"},{"date":"2019-06-18T08:45:00Z","value":942.0,"state":"A"},{"date":"2019-06-18T09:00:00Z","value":773.0,"state":"A"},{"date":"2019-06-18T09:15:00Z","value":988.0,"state":"A"},{"date":"2019-06-18T09:30:00Z","value":903.0,"state":"A"},{"date":"2019-06-18T09:45:00Z","value":751.0,"state":"A"},{"date":"2019-06-18T10:00:00Z","value":627.0,"state":"A"},{"date":"2019-06-18T10:15:00Z","value":459.0,"state":"A"},{"date":"2019-06-18T10:30:00Z","value":411.0,"state":"A"},{"date":"2019-06-18T10:45:00Z","value":378.0,"state":"A"},{"date":"2019-06-18T11:00:00Z","value":341.0,"state":"A"},{"date":"2019-06-18T11:15:00Z","value":333.0,"state":"A"},{"date":"2019-06-18T11:30:00Z","value":319.0,"state":"A"},{"date":"2019-06-18T11:45:00Z","value":304.0,"state":"A"},{"date":"2019-06-18T12:00:00Z","value":282.0,"state":"A"},{"date":"2019-06-18T12:15:00Z","value":286.0,"state":"A"},{"date":"2019-06-18T12:30:00Z","value":282.0,"state":"A"},{"date":"2019-06-18T12:45:00Z","value":276.0,"state":"A"},{"date":"2019-06-18T13:00:00Z","value":259.0,"state":"A"},{"date":"2019-06-18T13:15:00Z","value":269.0,"state":"A"},{"date":"2019-06-18T13:30:00Z","value":264.0,"state":"A"},{"date":"2019-06-18T13:45:00Z","value":262.0,"state":"A"},{"date":"2019-06-18T14:00:00Z","value":245.0,"state":"A"},{"date":"2019-06-18T14:15:00Z","value":244.0,"state":"A"},{"date":"2019-06-18T14:30:00Z","value":254.0,"state":"A"},{"date":"2019-06-18T14:45:00Z","value":255.0,"state":"A"},{"date":"2019-06-18T15:00:00Z","state":"N"},{"date":"2019-06-18T15:15:00Z","state":"N"},{"date":"2019-06-18T15:30:00Z","state":"N"},{"date":"2019-06-18T15:45:00Z","state":"N"},{"date":"2019-06-18T16:00:00Z","state":"N"},{"date":"2019-06-18T16:15:00Z","state":"N"},{"date":"2019-06-18T16:30:00Z","state":"N"},{"date":"2019-06-18T16:45:00Z","state":"N"},{"date":"2019-06-18T17:00:00Z","state":"N"},{"date":"2019-06-18T17:15:00Z","state":"N"},{"date":"2019-06-18T17:30:00Z","state":"N"},{"date":"2019-06-18T17:45:00Z","state":"N"},{"date":"2019-06-18T18:00:00Z","state":"N"}]}],"success":true,"message":{"code":0,"text":""}}

 

Hi @elabaigt 

 

Please use this in your JSON schema and test :

{
    "type": "object",
    "properties": {
        "data": {
            "type": "array",
            "items": {
                "type": "object",
                "properties": {
                    "id": {
                        "type": "string"
                    },
                    "base": {
                        "type": "array",
                        "items": {
                            "type": "object",
                            "properties": {
                                "date": {
                                    "type": "string"
                                },
                                "value": {
                                    "type": "integer"
                                },
                                "state": {
                                    "type": "string"
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

Hope this Helps!

@yashag2255,

 

I'm sorry but for no reason my Power Bi won't work, The data stream set that I created for get the data deleted itself and I can't recreate a new data flow 

 

I did not get you. Can you please share more details? Do you have the data set in the powerbi workspace that you are connecting to? 

 

I just checked this entire thing by creating test values and test arrays and it works fine. 

 

@yashag2255 

 

I just can't create a streaming dataset with historic data analysis 

 

The dataset disappear a appear randomly and I've got this error message:

The dataset could not be created.
Please try again later or contact support. If you contact support, please provide these details.
Activity ID8ff481ec-84b0-4fdb-a352-b80776e8e5e0
Request IDb8f6d2e1-7277-4721-5657-8f0bdab2c52b
Correlation ID0c159887-7ea7-0e4f-d191-7728c6361d06
Status code500
TimeWed Jun 19 2019 09:34:28 GMT+0200 (heure d’été d’Europe centrale)
Version13.0.9775.203
Cluster URIhttps://wabi-north-europe-redirect.analysis.windows.net

Hi @elabaigt 

I am not sure about that one. I tested with a simple data set in my environment and it works fine. I have not tested with a particular category of the dataset as you mentioned. You might want to check this on the PowerBI Community forum too. 

@yashag2255 

 

Yeah I search on PBI community and add a new topic about it.

Before this bug I tried to test with your JSON and it works but I always have this timed out during the apply to each block

 

 

I see. Can you check by manually adding a value to the data set in powerbi? There must be a very small factor that we are missing here. 

 

You can also check the output of the json parser after the flow is run (just so that we are sure that we get the right data)

 

Hope this Helps!

@yashag2255 

I get what I want in the output JSON but actually I can't add data to my dataset because my dataset streaming was deleted by the problem said before

 

Helpful resources

Announcements

Community Roundup: A Look Back at Our Last 10 Tuesday Tips

As we continue to grow and learn together, it's important to reflect on the valuable insights we've shared. For today's #TuesdayTip, we're excited to take a moment to look back at the last 10 tips we've shared in case you missed any or want to revisit them. Thanks for your incredible support for this series--we're so glad it was able to help so many of you navigate your community experience!   Getting Started in the Community An overview of everything you need to know about navigating the community on one page!  Community Links: ○ Power Apps ○ Power Automate  ○ Power Pages  ○ Copilot Studio    Community Ranks and YOU Have you ever wondered how your fellow community members ascend the ranks within our community? We explain everything about ranks and how to achieve points so you can climb up in the rankings! Community Links: ○ Power Apps ○ Power Automate  ○ Power Pages  ○ Copilot Studio    Powering Up Your Community Profile Your Community User Profile is how the Community knows you--so it's essential that it works the way you need it to! From changing your username to updating contact information, this Knowledge Base Article is your best resource for powering up your profile. Community Links: ○ Power Apps ○ Power Automate  ○ Power Pages  ○ Copilot Studio    Community Blogs--A Great Place to Start There's so much you'll discover in the Community Blogs, and we hope you'll check them out today!  Community Links: ○ Power Apps ○ Power Automate  ○ Power Pages  ○ Copilot Studio    Unlocking Community Achievements and Earning Badges Across the Communities, you'll see badges on users profile that recognize and reward their engagement and contributions. Check out some details on Community badges--and find out more in the detailed link at the end of the article! Community Links: ○ Power Apps  ○ Power Automate  ○ Power Pages  ○ Copilot Studio    Blogging in the Community Interested in blogging? Everything you need to know on writing blogs in our four communities! Get started blogging across the Power Platform communities today! Community Links: ○ Power Apps  ○ Power Automate  ○ Power Pages  ○ Copilot Studio   Subscriptions & Notifications We don't want you to miss a thing in the community! Read all about how to subscribe to sections of our forums and how to setup your notifications! Community Links: ○ Power Apps  ○ Power Automate  ○ Power Pages  ○ Copilot Studio   Getting Started with Private Messages & Macros Do you want to enhance your communication in the Community and streamline your interactions? One of the best ways to do this is to ensure you are using Private Messaging--and the ever-handy macros that are available to you as a Community member! Community Links: ○ Power Apps  ○ Power Automate  ○ Power Pages  ○ Copilot Studio   Community User Groups Learn everything about being part of, starting, or leading a User Group in the Power Platform Community. Community Links: ○ Power Apps  ○ Power Automate  ○ Power Pages  ○ Copilot Studio   Update Your Community Profile Today! Keep your community profile up to date which is essential for staying connected and engaged with the community. Community Links: ○ Power Apps  ○ Power Automate  ○ Power Pages  ○ Copilot Studio   Thank you for being an integral part of our journey.   Here's to many more Tuesday Tips as we pave the way for a brighter, more connected future! As always, watch the News & Announcements for the next set of tips, coming soon!    

Calling all User Group Leaders and Super Users! Mark Your Calendars for the next Community Ambassador Call on May 9th!

This month's Community Ambassador call is on May 9th at 9a & 3p PDT. Please keep an eye out in your private messages and Teams channels for your invitation. There are lots of exciting updates coming to the Community, and we have some exclusive opportunities to share with you! As always, we'll also review regular updates for User Groups, Super Users, and share general information about what's going on in the Community.     Be sure to register & we hope to see all of you there!

April 2024 Community Newsletter

We're pleased to share the April Community Newsletter, where we highlight the latest news, product releases, upcoming events, and the amazing work of our outstanding Community members.   If you're new to the Community, please make sure to follow the latest News & Announcements and check out the Community on LinkedIn as well! It's the best way to stay up-to-date with all the news from across Microsoft Power Platform and beyond.    COMMUNITY HIGHLIGHTS   Check out the most active community members of the last month! These hardworking members are posting regularly, answering questions, kudos, and providing top solutions in their communities. We are so thankful for each of you--keep up the great work! If you hope to see your name here next month, follow these awesome community members to see what they do!   Power AppsPower AutomateCopilot StudioPower PagesWarrenBelzDeenujialexander2523ragavanrajanLaurensMManishSolankiMattJimisonLucas001AmikcapuanodanilostephenrobertOliverRodriguestimlAndrewJManikandanSFubarmmbr1606VishnuReddy1997theMacResolutionsVishalJhaveriVictorIvanidzejsrandhawahagrua33ikExpiscornovusFGuerrero1PowerAddictgulshankhuranaANBExpiscornovusprathyooSpongYeNived_Nambiardeeksha15795apangelesGochixgrantjenkinsvasu24Mfon   LATEST NEWS   Business Applications Launch Event - On Demand In case you missed the Business Applications Launch Event, you can now catch up on all the announcements and watch the entire event on-demand inside Charles Lamanna's latest cloud blog.   This is your one stop shop for all the latest Copilot features across Power Platform and #Dynamics365, including first-hand looks at how companies such as Lenovo, Sonepar, Ford Motor Company, Omnicom and more are using these new capabilities in transformative ways. Click the image below to watch today!   Power Platform Community Conference 2024 is here! It's time to look forward to the next installment of the Power Platform Community Conference, which takes place this year on 18-20th September 2024 at the MGM Grand in Las Vegas!   Come and be inspired by Microsoft senior thought leaders and the engineers behind the #PowerPlatform, with Charles Lamanna, Sangya Singh, Ryan Cunningham, Kim Manis, Nirav Shah, Omar Aftab and Leon Welicki already confirmed to speak. You'll also be able to learn from industry experts and Microsoft MVPs who are dedicated to bridging the gap between humanity and technology. These include the likes of Lisa Crosbie, Victor Dantas, Kristine Kolodziejski, David Yack, Daniel Christian, Miguel Félix, and Mats Necker, with many more to be announced over the coming weeks.   Click here to watch our brand-new sizzle reel for #PPCC24 or click the image below to find out more about registration. See you in Vegas!       Power Up Program Announces New Video-Based Learning Hear from Principal Program Manager, Dimpi Gandhi, to discover the latest enhancements to the Microsoft #PowerUpProgram. These include a new accelerated video-based curriculum crafted with the expertise of Microsoft MVPs, Rory Neary and Charlie Phipps-Bennett. If you’d like to hear what’s coming next, click the image below to find out more!   UPCOMING EVENTS Microsoft Build - Seattle and Online - 21-23rd May 2024 Taking place on 21-23rd May 2024 both online and in Seattle, this is the perfect event to learn more about low code development, creating copilots, cloud platforms, and so much more to help you unleash the power of AI.   There's a serious wealth of talent speaking across the three days, including the likes of Satya Nadella, Amanda K. Silver, Scott Guthrie, Sarah Bird, Charles Lamanna, Miti J., Kevin Scott, Asha Sharma, Rajesh Jha, Arun Ulag, Clay Wesener, and many more.   And don't worry if you can't make it to Seattle, the event will be online and totally free to join. Click the image below to register for #MSBuild today!   European Collab Summit - Germany - 14-16th May 2024 The clock is counting down to the amazing European Collaboration Summit, which takes place in Germany May 14-16, 2024. #CollabSummit2024 is designed to provide cutting-edge insights and best practices into Power Platform, Microsoft 365, Teams, Viva, and so much more. There's a whole host of experts speakers across the three-day event, including the likes of Vesa Juvonen, Laurie Pottmeyer, Dan Holme, Mark Kashman, Dona Sarkar, Gavin Barron, Emily Mancini, Martina Grom, Ahmad Najjar, Liz Sundet, Nikki Chapple, Sara Fennah, Seb Matthews, Tobias Martin, Zoe Wilson, Fabian Williams, and many more.   Click the image below to find out more about #ECS2024 and register today!     Microsoft 365 & Power Platform Conference - Seattle - 3-7th June If you're looking to turbo boost your Power Platform skills this year, why not take a look at everything TechCon365 has to offer at the Seattle Convention Center on June 3-7, 2024.   This amazing 3-day conference (with 2 optional days of workshops) offers over 130 sessions across multiple tracks, alongside 25 workshops presented by Power Platform, Microsoft 365, Microsoft Teams, Viva, Azure, Copilot and AI experts. There's a great array of speakers, including the likes of Nirav Shah, Naomi Moneypenny, Jason Himmelstein, Heather Cook, Karuana Gatimu, Mark Kashman, Michelle Gilbert, Taiki Y., Kristi K., Nate Chamberlain, Julie Koesmarno, Daniel Glenn, Sarah Haase, Marc Windle, Amit Vasu, Joanne C Klein, Agnes Molnar, and many more.   Click the image below for more #Techcon365 intel and register today!     For more events, click the image below to visit the Microsoft Community Days website.      

Tuesday Tip | Update Your Community Profile Today!

It's time for another TUESDAY TIPS, your weekly connection with the most insightful tips and tricks that empower both newcomers and veterans in the Power Platform Community! Every Tuesday, we bring you a curated selection of the finest advice, distilled from the resources and tools in the Community. Whether you’re a seasoned member or just getting started, Tuesday Tips are the perfect compass guiding you across the dynamic landscape of the Power Platform Community.   We're excited to announce that updating your community profile has never been easier! Keeping your profile up to date is essential for staying connected and engaged with the community.   Check out the following Support Articles with these topics: Accessing Your Community ProfileRetrieving Your Profile URLUpdating Your Community Profile Time ZoneChanging Your Community Profile Picture (Avatar)Setting Your Date Display Preferences Click on your community link for more information: Power Apps, Power Automate, Power Pages, Copilot Studio   Thank you for being an active part of our community. Your contributions make a difference! Best Regards, The Community Management Team

Hear what's next for the Power Up Program

Hear from Principal Program Manager, Dimpi Gandhi, to discover the latest enhancements to the Microsoft #PowerUpProgram, including a new accelerated video-based curriculum crafted with the expertise of Microsoft MVPs, Rory Neary and Charlie Phipps-Bennett. If you’d like to hear what’s coming next, click the link below to sign up today! https://aka.ms/PowerUp  

Super User of the Month | Ahmed Salih

We're thrilled to announce that Ahmed Salih is our Super User of the Month for April 2024. Ahmed has been one of our most active Super Users this year--in fact, he kicked off the year in our Community with this great video reminder of why being a Super User has been so important to him!   Ahmed is the Senior Power Platform Architect at Saint Jude's Children's Research Hospital in Memphis. He's been a Super User for two seasons and is also a Microsoft MVP! He's celebrating his 3rd year being active in the Community--and he's received more than 500 kudos while authoring nearly 300 solutions. Ahmed's contributions to the Super User in Training program has been invaluable, with his most recent session with SUIT highlighting an incredible amount of best practices and tips that have helped him achieve his success.   Ahmed's infectious enthusiasm and boundless energy are a key reason why so many Community members appreciate how he brings his personality--and expertise--to every interaction. With all the solutions he provides, his willingness to help the Community learn more about Power Platform, and his sheer joy in life, we are pleased to celebrate Ahmed and all his contributions! You can find him in the Community and on LinkedIn. Congratulations, Ahmed--thank you for being a SUPER user!

Users online (6,684)