In sharepoint site i have "today's date as default" checkmarked. but i think powerapps overrides it and makes the default date 12/31/2001
Solved! Go to Solution.
Unlock the data card with the datepicker in it and change the DefaultDate property from Parent.default to Today().
Unlock the data card with the datepicker in it and change the DefaultDate property from Parent.default to Today().
you are brilliant thanks.
I think the correct formula should be:
If(SharePointForm1.Mode=FormMode.New;Today();Parent.Default)
Otherwise a selected date will be overwritten with Today every time you edit your data...
Just to put my two cent in: swap the ";" for ","s
If(SharePointForm1.Mode=FormMode.New,Today(),Parent.Default)
swap the ";" for ","s
That's correct for the US - but in Europe/Germany it's an ";". For me this is the most annoying thing with the Power platform. Who the hell had the idea to distinguish the delimeter of a formula language by country settings?
User | Count |
---|---|
183 | |
123 | |
88 | |
45 | |
42 |
User | Count |
---|---|
251 | |
160 | |
126 | |
78 | |
73 |