
Announcements
Hi Everyone,
Currently, I'm working on a SharePoint List and I have a column that automatically chooses a Today() Date. However, every time a person updates an item, it changes the date and it doesn't save the original date. I don't know how to fix this problem. This is the code that I have in PowerApps in "InputTextPlaceholder":
If(IsBlank(Self.SelectedDate),Text(Date(2001,12,31), Self.Format,Self.Language))
And for "DefaultDate": Parent.Default
If you are talking about a DatePicker, the setting its DefaultDate to
Coalesce(Parent.Default,Today()) will supply today's date if there isn't a date already chosen.