I am in the process of converting my application to sharepoint and i'm running into a weird (to me) error. I use a label that is just a now() function. This label is called Date100. When I patch the data to my sharepoint list, I use a patch function. Here are the two relevant lines.
Date: DateTimeValue(date100.Text,"ca-ES"),
DateValue: Value(Text(Today(),"[$-en-US]yyyymmdd")),
The correct value should be 11/12/2019. However, after the first entry it is reading it as 12/11/2019. The date value is reading it correctly 2019-11-12. What do I need to do to convert this to 11/12/2019? Note: The time is coming over correctly.
