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

Notifications

Announcements

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,327 Super User 2025 Season 2 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
    153,012 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

Forum hierarchy changes are complete!

In our never-ending quest to improve we are simplifying the forum hierarchy…

Ajay Kumar Gannamaneni – Community Spotlight

We are honored to recognize Ajay Kumar Gannamaneni as our Community Spotlight for December…

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 793 Most Valuable Professional

#2
Michael E. Gernaey Profile Picture

Michael E. Gernaey 333 Super User 2025 Season 2

#3
Power Platform 1919 Profile Picture

Power Platform 1919 268

Last 30 days Overall leaderboard