cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
GKlose
Frequent Visitor

Get File Content error from Form Upload

I am trying to attach files uploaded to a Form to a Jira Issue but I am getting a BadRequest error early in the flow.

 

In the activity: GET FILE CONTENT (ONEDRIVE FOR BUSINESS) the INPUTS appears to have the right URL but the OUTPUT has errors.

 

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

 

INPUT:

 

[{"name":"Task - Create_anonymous.png","link":"https://XXX.sharepoint.com/personal/XXX/Documents/Apps/Microsoft%20Forms/XXX%20Service%20Desk%20(2)/...","id":"01PVJRN2GDHTOVH623X5AJATRKKYPSHA3J","type":null,"size":68091,"referenceId":"01PVJRN2HRJESD53VNRJC2UKLVO2PEMZU7","driveId":"b!eoT3hbZ3lkuqSZap3wewuTey4SB5hgtFhUK-Ow0n_36D2nwVnrIXRKR_IuhRgjgY","status":1,"uploadSessionUrl":null}]

 

OUTPUT:

 

{
    "statusCode"400,
    "headers": {
        "Timing-Allow-Origin""*",
        "x-ms-apihub-cached-response""false",
        "x-ms-apihub-obo""false",
        "Date""Mon, 15 Apr 2024 12:19:00 GMT",
        "Content-Length""575",
        "Content-Type""application/json"
    },
    "body": {
        "error": {
            "code"400,
            "source""australia-001.azure-apim.net",
            "clientRequestId""fe661283-23bc-4ca0-aa65-6c2adf1962b8",
            "message""The response is not in a JSON format.",
            "innerError""<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01//EN\"\"http://www.w3.org/TR/html4/strict.dtd\">\r\n<HTML><HEAD><TITLE>Bad Request</TITLE>\r\n<META HTTP-EQUIV=\"Content-Type\" Content=\"text/html; charset=us-ascii\"></HEAD>\r\n<BODY><h2>Bad Request - Invalid URL</h2>\r\n<hr><p>HTTP Error 400. The request URL is invalid.</p>\r\n</BODY></HTML>\r\n"
        }
    }
}

I then tried the Action: GET FILE CONTENT FROM PATH (ONEDRIVE FOR BUSINESS) but got this OUTPUT ERROR:

{
    "statusCode"400,
    "headers": {
        "Cache-Control""no-cache",
        "Pragma""no-cache",
        "Transfer-Encoding""chunked",
        "x-ms-request-id""29d4afed-147b-4d79-a1cc-13d4195fdb7e",
        "X-AspNet-Version""4.0.30319",
        "X-Powered-By""ASP.NET",
        "Timing-Allow-Origin""*",
        "x-ms-apihub-cached-response""false",
        "x-ms-apihub-obo""false",
        "Date""Mon, 15 Apr 2024 12:29:46 GMT",
        "Content-Type""application/json",
        "Content-Length""92",
        "Expires""-1"
    },
    "body": {
        "status"400,
        "message""Invalid request",
        "source""api.connectorp.svc.ms"
    }
}
14 REPLIES 14
Expiscornovus
Most Valuable Professional
Most Valuable Professional

Hi @GKlose,

 

The upload question returns a string with different properties for each uploaded file. You can use a json function to convert it from a string to an array.

 

After that you can loop through this array and retrieve the details of each item/attachment with an Apply to Each.

 

One of those properties is the id of the file. You can use that value in your Get File content action.

 

Below is an example

 

1. Expression to convert string answer to array (change the id to your Forms upload attachments question id)

 

 

json(outputs('Get_response_details')?['body/re63869bd6ae04a5683cde0c7419c6578'])

 

 

 

2. Expression to retrieve File Id

 

 

item()['Id']

 

 

 

idofcurrentitem.png

 



Happy to help out! 🙂

Interested in more #PowerAutomate #SharePointOnline or #MicrosoftCopilotStudio content?
Visit my blog, Subscribe to my YouTube channel or Follow me on Twitter


GKlose
Frequent Visitor

Hi @Expiscornovus , thank you so much for your suggestion. Before I try and implement this, will I be able to (use this ID to) actually copy or upload the file into Jira (as an attachment or comment linked to the Issue).

 

If so, I will create a new topic on how to do this. But for now I just need to know that I am heading in the right direction.

 

Use case: A Jira user should be able to open/view the attachment even though they do not have any access to the original attachment in Sharepoint*.

 

* There has been a change in that the Form now generates the attachment to a Sharepoint folder (as the Form ownership is now a Group and not an individual).

 

GKlose
Frequent Visitor

HI @Expiscornovus , to complicate things, I have now switched to storing the Uploads in Sharepoint.

 

So I have tried to replace the Onedrive Action with the Sharepoint Action (Get File Metadata) with the File Identifier being the UPLOAD dynamic field and the Site address being the Teams site from the drop down menu.

And I keep getting an error:

Route did not match
clientRequestId: f83a25d4-1749-497b-94be-7bfe65e0356e
serviceRequestId: f83a25d4-1749-497b-94be-7bfe65e0356e

I am so lost.

Expiscornovus
Most Valuable Professional
Most Valuable Professional

Hi @GKlose,

 

Yes, that would be slightly different. In that case I would retrieve the path first (ServerRelativeUrl) of each upload (via a HTTP request) and use a Get File Content Using Path action instead of your Get File Metadata). 

 

Below are the steps of my proposed approach (also shared it earlier in this thread) and I also blogged about this recently with detailed steps:

https://www.expiscornovus.com/2024/02/13/retrieve-files-from-upload-file-question/

 

Below is a short snippet of that same example

 

1. Add a Send an HTTP request within the attachment question apply to each loop

a. Use as Site Address (this expression is used to retrieve the site address portion of the link)

 

 

 

join(take(split(item()['link'], '/'), 5), '/')

 

 

 

b. Use as URI (this expression is used to retrieve the file id portion of the link, a guid of 36 characters)

 

 

 

_api/web/GetFileById('@{substring(item()['link'], add(indexOf(item()['link'], 'sourcedoc=%7B'), 13), 36)}')?$select=ServerRelativeUrl

 

 

 

c. Use as Headers

 

 

 

{
  "Accept": "application/json;odata=nometadata",
  "Content-Type": "application/json;odata=nometadata"
}

 

 

 

 

2. Use a Get File Content using Path instead of a Get File Content

a. Use as Site Address

 

 

 

join(take(split(item()['link'], '/'), 5), '/')

 

 

 

b. Use as File Path (this expression is used to retrieve the file path portion of the ServerRelativeUrl field)

 

 

 

concat('/',join(skip(split(outputs('Send_an_HTTP_request_to_SharePoint')?['body']['ServerRelativeUrl'], '/'), 3), '/'))

 

 

 

 

getattachments_form.png

 

 



Happy to help out! 🙂

Interested in more #PowerAutomate #SharePointOnline or #MicrosoftCopilotStudio content?
Visit my blog, Subscribe to my YouTube channel or Follow me on Twitter


Hi @Expiscornovus . Thank you so much. I checked out your blog post also. However I am getting stuck on the first step.

  1. For the 1st action "Get response details" I am forced to envelope it in an "Apply to each" which looks different from your flow which has the "Apply to each" after the "Get response details".

  2. The "Send an HTTP request to Sharepoint" is set-up as per youur instructions (see pic) but returns a Test error:

    Unable to process template language expressions in action 'Send_an_HTTP_request_to_SharePoint' inputs at line '0' and column '0': 'The template language expression 'substring(item()['link'], add(indexOf(item()['link'], 'sourcedoc=%7B'), 13), 36)' cannot be evaluated because property 'link' doesn't exist, available properties are 'webhookId, eventType, resourceData, eventTime'. Please see https://aka.ms/logicexpressions for usage details.'.

  3. I have set-up the "Get file content using path" as instructed but the Test has not yet reached that action (due to "2" above).

  4. Assuming "2" can be fixed and "3" works what else will be needed to extract the content(?) of the 1 or more attachments from the Form Upload (in Sharepoint as it is a Group Form) before it is somehow attached to the Jira Issue which is created from the same Form Response further down the flow?

    Edit-your-flow-Power-Automate (2).png
GKlose
Frequent Visitor

Hi @Expiscornovus . I just noticed some strikethrough text which appears to be full "Upload" Get Form Response data for when 2 files are uploaded.

 

This was discovered as the currently flow has a Create Jira Issue and simply displays the "Upload" dynamic content in the Issue description (my workaround for now).

 

Could this be a cause of the error in "2" in the previous post?

 

Screenshot 2024-04-26 140000.png

Expiscornovus
Most Valuable Professional
Most Valuable Professional

Hi @GKlose,


Because you are already using an apply to each you would need to add another apply to each for your upload question. In your setup it should look like the below.

 

nestedapplytoeach.png



Happy to help out! 🙂

Interested in more #PowerAutomate #SharePointOnline or #MicrosoftCopilotStudio content?
Visit my blog, Subscribe to my YouTube channel or Follow me on Twitter


Hi @Expiscornovus . Thanks for the inout. I did try enveloping your bits into an additional "Apply to each 2" but I wasn't even able to Save the changes as I got this error: 

The template validation failed: 'The template action 'Apply_to_each_2' at line '1' and column '11028' is not valid: "The template function 'body' is not expected at this location.".'.

 

The json function is for the "Upload" question in the Form responses (see pics below). Is that right?

f7dbaa55-c400-42a2-a717-3aadfced8e44.png

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

Expiscornovus
Most Valuable Professional
Most Valuable Professional

Hi @GKlose,

 

I see your expression uses the below format, the body function is not expected/allowed within the outputs function.

 

outputs(body())

 

 

Can you try the below format instead, just a outputs function with the body property?

 

json(outputs('Get_response_details')?['body/r3bedbbeaf55e4f07808d2896d933214b'])

 

 

or just a body without an outputs function

 

json(body('Get_response_details')?['r3bedbbeaf55e4f07808d2896d933214b'])

 

 

 



Happy to help out! 🙂

Interested in more #PowerAutomate #SharePointOnline or #MicrosoftCopilotStudio content?
Visit my blog, Subscribe to my YouTube channel or Follow me on Twitter


GKlose
Frequent Visitor

Hi @Expiscornovus . Thank you for your patience. I have tried both of those expressions and both enable me to save but now I am getting the same error 400 with both versions.

 

Have I got the HTTP Expressions correct (see highlighted in blue below) or am I supposed to add some dynamic content in there?

 

The Join expression:

join(take(split(item()['link'], '/'), 5), '/')
 

The Substring expression:

substring(item()['link'], add(indexOf(item()['link'], 'sourcedoc=%7B'), 13), 36)
 
GKlose_0-1714313670171.png

 

GKlose_1-1714313710465.png

 

Test HTTP action INPUT:

GKlose_2-1714313772155.png

 

Test HTTP action OUTPUT:

 

GKlose_3-1714313816727.png

 

 

Expiscornovus
Most Valuable Professional
Most Valuable Professional

Hi @GKlose,

 

The value within the GetFileById method looks strange. Just had another look at your uploaded files.

 

The solution I shared earlier was tested with Office files. With those you would get Office Online embedded links in the question response.  I would have to reuse the link and reuse the GUID in a HTTP request to find the direct link of each file.

 

However, in your case images/png files are used and the link property already has the correct direct link. Which makes the setup a bit easier and you don't have to use the Send an HTTP request anymore.


Try the below instead

 

Site Address

join(take(split(item()['link'], '/'), 5), '/')

 

File Path 

join(skip(split(item()['link'], '/'), 5), '/')

 

images_uploads.png



Happy to help out! 🙂

Interested in more #PowerAutomate #SharePointOnline or #MicrosoftCopilotStudio content?
Visit my blog, Subscribe to my YouTube channel or Follow me on Twitter


GKlose
Frequent Visitor

Hki @Expiscornovus . Progress. The Get file content by path Action now passes the test but the Get file metadata Action fails. Do I still need it? Remember, the end game is going to uploading/attaching these files to a Jira Issue.

Inputs:

{
    "method": "get",
    "path": "/datasets/https%253A%252F%252Fsagov.sharepoint.com%252Fteams%252FmywaterProject/files/",
    "host": {
        "api": {
        },
        "connection": {
            "name": "/providers/Microsoft.PowerApps/apis/shared_sharepointonline/connections/shared-sharepointonl-41be202d-ddbf-474c-b188-c700becf6144"
        }
    },
    "authentication": {
        "scheme": "Key",
        "parameter": "*sanitized*",
        "type": "Raw"
    }
}
 
Outputs:
{
    "statusCode": 404,
    "headers": {
        "Access-Control-Allow-Methods": "GET, PUT, PATCH, DELETE, POST",
        "Access-Control-Allow-Origin": "*",
        "Access-Control-Max-Age": "3600",
        "Access-Control-Expose-Headers": "*",
        "Date": "Tue, 30 Apr 2024 10:16:26 GMT",
        "Content-Length": "54",
        "Content-Type": "application/json"
    },
    "body": {
        "statusCode": 404,
        "message": "Resource not found"
    }
}
Expiscornovus
Most Valuable Professional
Most Valuable Professional

Hi @GKlose,

 

Like mentioned in one of my first replies, the Get File Content Using Path action is used instead of your Get File Metadata. So, you don't really need that action.



Happy to help out! 🙂

Interested in more #PowerAutomate #SharePointOnline or #MicrosoftCopilotStudio content?
Visit my blog, Subscribe to my YouTube channel or Follow me on Twitter


GKlose
Frequent Visitor

Hi @Expiscornovus . Got it. So I have now included the next step "Create Jira Issue" (via a Switch) inside of the same "Apply to each" as the "Get file content using path" Action and there were no errors.

 

But I am not sure what we have achieved as ultimately we want to attach the 1-3 uploaded files (in this case 2) from the Form (stored in Sharepoint) into Jira (stored in Jira).

 

When I compared the outputs of the current dynamic content of "Upload" field from the "Get response details" with the "Current content" dynamic content from "Get file content using path" I noticed that the content was in the same format (so not sure of the value in the extra step) and the "Content content" only contained 1 of the 2 uploaded links.

 

---"Upload" output---

 

[{"name":"Edit-your-flow-Power-Automate (9)anonymous 1.png","link":"https://xxx.sharepoint.com/teams/mywaterProject/Shared%20Documents/Apps/Microsoft%20Forms/xxx%20Serv...","id":"017G3RMS2OIEHWLKBP3BHJAORK5BYONBP4","type":null,"size":77850,"referenceId":"017G3RMSZZD7HXOI5QGZGJNVQMY23QOWIH","driveId":"b!Zs1iNri5kUmxF1r03HrbI1I0OTVzdL5KgVVqn1qBREvUWWNQstleQ4H8RPeLFG","status":1,"uploadSessionUrl":null},{"name":"Edit-your-flow-Power-Automate (8)_anonymous 1.png","link":"https://xxx.sharepoint.com/teams/mywaterProject/Shared%20Documents/Apps/Microsoft%20Forms/xxx%20Serv...anonymous%201.png","id":"017G3RMS6VMFGGFGPW5JH2SGDWE3OSAWVO","type":null,"size":54421,"referenceId":"017G3RMSZZD7HXOI5QGZGJNVQMY23QOWIH","driveId":"b!Zs1iNri5kUmxF1r03HrbI1I0OTVzdL5KgVVqn1qBREvUWWNQstleQ4H8R-PeLFG","status":1,"uploadSessionUrl":null}]

 

---"Current content" output---

 

{"name":"Edit-your-flow-Power-Automate (8)anonymous 1.png","link":"https://xxx.sharepoint.com/teams/mywaterProject/Shared%20Documents/Apps/Microsoft%20Forms/xxx%20Serv...","id":"017G3RMS6VMFGGFGPW5JH2SGDWE3OSAWVO","type":null,"size":54421,"referenceId":"017G3RMSZZD7HXOI5QGZGJNVQMY23QOWIH","driveId":"b!Zs1iNri5kUmxF1r03HrbI1I0OTVzdL5KgVVqn1qBREvUWWNQstleQ4H8R-PeLFG","status":1,"uploadSessionUrl":null}

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 (4,496)