Hi
I have date picker in my app,
But the output of the date is defaulted to no date,
how can I sort my date picker out.
Hi
I have date picker in my app,
But the output of the date is defaulted to no date,
how can I sort my date picker out.
Hi, @Aki1111 refer this link: UiPath App Date Picker | How to Use the Date Picker in UiPath App
Hi @Aki1111
Min date just defines the earliest selectable date, not the default (selected) date.
The “Default value” (the property right above or below it) determines what’s shown initially.
If that property isn’t set (or the expression evaluates to null
/ Nothing
), the control will appear empty.
var_start_date
actually contains a valid date string (like "2025-10-06"
or "10/06/2025"
depending on locale).
It’s assigned before the page loads (e.g., in an “On Page Load” rule).
If you want “today” as default
You can directly set:
DateOnly.FromDateTime(DateTime.Now)
That will show today’s date by default.
Hope this helps.
Regards.
I put it as the default value. - this the output
If you want to set output with selected Date from picker, you can apply these steps like below. There is no direct output property. You can add a rule under Events tab like this.
Regards.
Can you change the type of the variable as string?
The variable type in Item to Set must be string.
Regards.
Hi @Aki1111,
please always try to provide as much information as possible — the more details we have, the better we can support you.
What @tolga.kamci suggested should do the trick.
Your error message simply states that there’s a mismatch between two values.
Best regards
Thank you so much this worked