Skip to main content

Notifications

Community site session details

Community site session details

Session Id : cLbT/Wyhty3n7yEU8iuuy2
Power Apps - Building Power Apps
Answered

Trying to pass Date from powerapps to Flow to Sharepoint

Like (1) ShareShare
ReportReport
Posted on 29 Dec 2022 21:39:42 by 19

I have what I thought would be a simple PowerApps App that collects a few pieces of information and uploads this to SharePoint. I found that since I am including a picture from the camera control I needed to do this with a Flow. The date fields were being passed to the run command from a DatePicker using DatePicker.SelectedDate. For the Flow, I tried to use:

formatDateTime(triggerBody()['Updatefileproperties_ReportDate'],'MM-dd-yyyy')

in the expression field but I ended up with the following error in PowerApps:

pmontalbano_1-1672348909555.png

Then I decided to hard code the date as string and use variables in the flow to take a string date and convert to Date. then add the Date to the File Properties Update. The flow now contains:

pmontalbano_2-1672349532224.png

pmontalbano_3-1672349558424.png

This produces the exact same error from PowerApps. To make matters worse, when I look at the 28 day run history, none of my attempts show up. There are only two entries and both are from tests I performed, not from the manual action from PowerApps. So I have 2 questions:

1. how can I pass the DatePicker.SelectedDate to the Flow to end up in a Date column in SharePoint?

2. Why am I not seeing the Flows fail? In fact, no matter what change I make in PowerApps or in Flow, the error message I get is exactly the same. This seems very strange to me.

 

Bonus points for anyone that can tell me how to update only a subset of fields when creating this record as some fields in SharePoint are not required and will be modified later by users directly in SharePoint.

 

 

  • PSPAFLOW Profile Picture
    2 on 10 Dec 2024 at 09:13:54
    Trying to pass Date from powerapps to Flow to Sharepoint
    Thank you for the help. My working solution was (with caps does not work, YYYY-MM-DD)
    Text(DatePicker1.SelectedDate,"yyyy-mm-dd")
     
    Text(DatePicker1.SelectedDate,DateTimeFormat.UTC) not working
  • CLISS Profile Picture
    29 on 01 May 2023 at 21:13:23
    Re: Trying to pass Date from powerapps to Flow to Sharepoint

    I found the answer to my question if anyone was interested:

    I moved the "Document." inside the Text function so that it reads:

    ,Text(Document.mEffectiveFrom.SelectedDate,"[$-en-US]yyyy-mm-dd") ,Text(Document.mEffectiveTo.SelectedDate,"[$-en-US]yyyy-mm-dd")

  • Pstork1 Profile Picture
    66,004 Most Valuable Professional on 01 May 2023 at 13:13:25
    Re: Trying to pass Date from powerapps to Flow to Sharepoint

    The date needs to be passed as an ISO 8601 formatted date, which is a string.  In ISO 8601 the year always comes first. You need to enclose the date in a Text format like this

    Text(DatePicker1.SelectedDate,DateTimeFormat.UTC)

    when you pass it to the flow.  That will put it in ISO 8601 format.

  • CLISS Profile Picture
    29 on 01 May 2023 at 02:52:46
    Re: Trying to pass Date from powerapps to Flow to Sharepoint

    Hi Bethany

    Im using the Power V2 trigger to send documents to a SharePoint library via a Gallery but am having trouble with passing Dates as metadata due to this formatting issue. I'm using the instructions below and the files are successfully created in SP with the text field metadata but I can't get the dates to pass. I get the error that 'Documents' can't use the 'Text' function. Can you see a solution to this?

    Thanks

    Craig

    ForAll(galAttachments.AllItems As Document,
    MultiUploadofFilesToSPLibrary.Run({
    contentBytes: Document.Value,
    name: Document.Name}
    ,Document.mSalesComment.Text
    ,Document.Text(mEffectiveFrom.SelectedDate,"[$-en-US]yyyy-mm-dd")
    ,Document.Text(mEffectiveTo.SelectedDate,"[$-en-US]yyyy-mm-dd")
    ));

  • pmontalbano Profile Picture
    19 on 03 Apr 2023 at 15:19:41
    Re: Trying to pass Date from powerapps to Flow to Sharepoint

    Hello, Yes passing the date from PowerApps to the flow uses the Text() function as you mentioned. The flow takes this input into a Date parameter in the PowerAppsV2 trigger. Note that I did need to use the PowerAppsV2 trigger and not the PowerApps trigger. Then the format needs to be changed. In the field you are trying to use this date, you will need to format it properly. Instead of just picking your date parameter, you need to enter the following expression:

     

    formatDateTime(triggerBody()['Date'],'u') Where ['Date'] is the name of your parameter. Hope it helps.
  • Bethany123 Profile Picture
    12 on 03 Apr 2023 at 10:13:48
    Re: Trying to pass Date from powerapps to Flow to Sharepoint

    I've been searching for ages on how to solve this.

    I've been updating SharePoint via PowerApps and PowerAutomate, using Shane Youngs video,  which was great. It all worked fine until I tried to pass a date through.

    Can I just check what your fix was...

    In PowerApps, you passed through "Text(DatePicker1.SelectedDate, "yyyy-mm-dd")

    Really appreciate any help

    Thanks for any help

  • Verified answer
    pmontalbano Profile Picture
    19 on 01 Jan 2023 at 02:21:44
    Re: Trying to pass Date from powerapps to Flow to Sharepoint

    Solved it. Instead of passing 

    DatePicker1.SelectedDate

     I am now passing

    Text(DatePicker1.SelectedDate, "yyyy-mm-dd")

    This sends the correct format to flow and the flow now works.

  • pmontalbano Profile Picture
    19 on 01 Jan 2023 at 00:33:20
    Re: Trying to pass Date from powerapps to Flow to Sharepoint

    One more thing to note. The Trigger in Flow shows "Please enter or select a date (YYYY-MM-DD)" suggesting that the date needs to be passed from PowerApps in YYYY-MM-DD format but is being passed as MM-DD-YYYY in string format.

  • pmontalbano Profile Picture
    19 on 01 Jan 2023 at 00:29:40
    Re: Trying to pass Date from powerapps to Flow to Sharepoint

    Thank you for your help. I am still having an issue however. I did change the trigger in my flow to be a PowerApps V2 trigger and added several Data Parameters including 2 Date fields.

    pmontalbano_0-1672532484352.png

     

    Just to test, I did not add the variable to the update file properties for the corresponding columns in SharePoint. So essentially, I am just collecting the parameter from the DatePicker control using SelectedDate.

    pmontalbano_2-1672532741578.png

     

    This failed with error:

    pmontalbano_3-1672532772718.png

     

    This shows that PowerApps is passing a String, not a date to the flow. Just to be thorough, I added the formula as you suggested to the update file properties for the fields I need to update, but this still failed with the same error. I must be missing something here. Why is the DatePicker.SelectedDate passing a String instead of a Date?

     

     

     

  • Pstork1 Profile Picture
    66,004 Most Valuable Professional on 29 Dec 2022 at 21:48:55
    Re: Trying to pass Date from powerapps to Flow to Sharepoint

    You can pass the date directly to the Flow without changing the format if you use the Power Apps V2 trigger and add a data parameter.  Then in the flow use one of the standard ISO 8601 formats when formatting the date to supply it to SharePoint.  That is what SharePoint expects.  Here's the format command I used in my test. 'u' is one of the standard ISO 8601 formats.

     

    formatDateTime(triggerBody()['date'],'u')

     

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

🌸 Community Spring Festival 2025 Challenge 🌸

WIN Power Platform Community Conference 2025 tickets!

Markus Franz – Community Spotlight

We are honored to recognize Markus Franz as our April 2025 Community…

Kudos to the March Top 10 Community Stars!

Thanks for all your good work in the Community!

Leaderboard

#1
WarrenBelz Profile Picture

WarrenBelz 146,660 Most Valuable Professional

#2
RandyHayes Profile Picture

RandyHayes 76,287 Super User 2024 Season 1

#3
Pstork1 Profile Picture

Pstork1 66,004 Most Valuable Professional

Leaderboard
Loading started