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 picker field defa...
Power Apps
Suggested Answer

Date picker field default "12/31/2001"

(0) ShareShare
ReportReport
Posted on by 10
How can I configure a date picker field in Power Apps so it appears blank by default instead of showing the placeholder date "12/31/2001" before the user inputs a date? I want the field to be empty initially to avoid any confusion about the date input.
Categories:
I have the same question (0)
  • Ellis Karim Profile Picture
    12,163 Super User 2026 Season 1 on at
     
    This is the Power Automate forum.
     
    But you can try:
    • Clear the DefaultDate property (i.e. leave it empty) 
    • Make sure that the InputTextPlaceHolder text is set to ""
     
     
    Ellis Karim
    Ellis Karim
    elliskarim.com  |  LinkedIn  |  Bluesky
    If this solved your issue, please mark it as ✅ Accepted Answer. If it helped, feel free to give it a 🩷 Like!
  • Suggested answer
    MParikh Profile Picture
    521 Super User 2026 Season 1 on at

    Use a DatePicker control and drive it with a blank variable. The “12/31/2001” shows up when the control gets a default date value instead of Blank.
    Here is the approach I propose

    1. OnVisible of the screen (or App.OnStart)
      Set(varDate, Blank())
    2. DatePicker.SelectedDate
      varDate
    3. DatePicker.OnChange
      Set(varDate, Self.SelectedDate)
    4. To display blank until user picks a date
      Set DatePicker.Format to something readable, then add a hint label next to it:
    Label.Text
    If(IsBlank(varDate), "Select a date", Text(varDate, "[$-en-US]mm/dd/yyyy"))

    If you are using an Edit Form (SharePoint or Dataverse)
    • DataCard.Default
      Parent.Default
    • DatePicker.SelectedDate
      If(FormMode = FormMode.New && IsBlank(Parent.Default), Blank(), Parent.Default)

    Optional: clear button
    Button.OnSelect
    Set(varDate, Blank()); Reset(DatePicker1)


    Thank you! 
    Proud to be a Super User!
    📩 Need more help?
    ✔️ Don’t forget to Accept as Solution if this guidance worked for you.
    💛 Your Like motivates me to keep helping

     
  • Kalungi A Profile Picture
    10 on at
    When I tried the first solution, the default date disappeared but I am not able to save a date in this space. 
    Please assist

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

Season of Sharing Community Challenge Launch!

Jump in, show your community spirit, and win prizes!

Kudos to our 2025 Community Spotlight Honorees

Expanding mentorship, skilling, and AI innovation

Congratulations to the May Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
Valantis Profile Picture

Valantis 424

#2
WarrenBelz Profile Picture

WarrenBelz 355 Most Valuable Professional

#3
11manish Profile Picture

11manish 290

Last 30 days Overall leaderboard