Hi All. I have a dropdown with Completed and Not Completed. And I have a datepicker to display todays date if Completed is selected. This is the formula I am using for default date but it shows 11/2/2025 in the datepicker box when Completed is selected.
Any ideas?
If(
ComboBox1.Selected.Value = "Not Completed",
Blank(),
If(
IsBlank(ThisItem.SignOffDate),
Text(
Today(),
"dd-mm-yyyy"
),
ThisItem.SignOffDate
)
)