I have a modern date picker in a view form linked to members.orientationDate in a dataverse table. When a record in the members table has a date value for orienationDate, the value is displayed correctly without issue; however, when the record in the members table has no value for orientationDate, a random (seems to be the most orientationDate value from the most recently updated record) is displayed.
The original selectedDate value was Parent.Default, however, I've now changed it to If(IsBlank(ThisItem.orientationDate), Date(1971,1,1), Parent.Default). This still doesn't do what I want as a date is still displayed instead of nothing, but at least I can control which date is displayed.
Is there any way to either have no date displayed or the place holder text displayed when the date picker display mode is View?