Hi,
I created a canvas PowerApps form but there is a problem with the date-time Datacard. When I create a new record, if I leave it blank, it fills a date automatically. How can I get rid of the default value?
Thanks in Advance

Hi,
I created a canvas PowerApps form but there is a problem with the date-time Datacard. When I create a new record, if I leave it blank, it fills a date automatically. How can I get rid of the default value?
Thanks in Advance
Hi @Setayesh2 ,
1. check if there are any default values are configured for the default/update properties of data card and in SPOlist
2. check if there is any default value is configured for datacardvalue of arrived date
and you can pass Blank() if it is blank in the default property of datacardvalue
i.e. if(self.selected.date = Blank(),Blank(),Thisitem.'Arrived date')