web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Apps / Date format change fro...
Power Apps
Unanswered

Date format change from SharePoint List to Power Apps

(0) ShareShare
ReportReport
Posted on by
I have a SP list with multiple columns. One of the columns is date type. I have a Power Apps with a dropdown field that retrieves and views the data type column from the SP list, but the date format comes back in a very different format. For example, 29/10/2024 would return 165524400000 . I can't find a way to mitigate this. Does any one have a solution?
 
Categories:
I have the same question (0)
  • Srini007 Profile Picture
    3,463 Super User 2026 Season 1 on at
    Hi,
     
    You can write as below
     
    Text(DateValue(YourSharepointDateColumn), "[$-en-US]dd/mm/yyyy")
     
     
    If I have answered your question, please mark it as the Answered. If you like my response, please give it a Like.
    Regards,
    Srini
     
  • WarrenBelz Profile Picture
    154,447 Most Valuable Professional on at
    This will display all the dates in Text
    ShowColumns(
       AddColumns(
          Sort(
             SPList,
             YourDateField,
             SortOrder.Descending
          ),
          DateTxt,
          Text(
             YourDateField,
             "dd/mm/yyyy"
          )
       ),
       DateTxt
    )
    Just be aware that writing it back as a Date will have some complexities (caused mainly by dd/mm/yyyy instead of the USA standard mm/dd/yyyy ) - the Data Card Update
    With(
       {
          _Data: 
          Split(
             YourComboBoxName.Selected.DateTxt,
             "/"
          )
       },
       Date(
          Last(_Data).Value,
          Index(
             _Data,
             2
          ).Value,
          First(_Data).Value
       )
    )
     
    Please click Does this answer your question if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it a Like.
    MVP (Business Applications)     Visit my blog Practical Power Apps    Buy me a coffee

     

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

Introducing the 2026 Season 1 community Super Users

Congratulations to our 2026 Super Users!

Kudos to our 2025 Community Spotlight Honorees

Congratulations to our 2025 community superstars!

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 542 Most Valuable Professional

#2
Haque Profile Picture

Haque 206

#3
Kalathiya Profile Picture

Kalathiya 201 Super User 2026 Season 1

Last 30 days Overall leaderboard