On the DefaultDate property of a Date field I have (DataCardValue13) I'm trying set the default date to Today - only if this is the editform and the current date is empty. But I'm getting the following error.
This rule creates a circular reference between properties which is not allowed.
Here's my formula:
If(SharePointForm1.Mode = 0 && IsBlank(Self.SelectedDate),
Today(),
Parent.Default
)
How do I reference the current field this formula is on? It doesn't like the Self.SelectedDate currently.
Thanks