I have a string date in the UK format "DD/MM/YYYY" when I insert this into a sharepoint date column it gets parsed as "MM/DD/YYYY".
So when I insert "01/02/1990" (1st Feb 1990) it gets inserted as 2nd Jan 1990.
Is there a way to convert "DD/MM/YYYY" to a timestamp (YYYY-MM-DD) so that the date can be inserted correctly. ?
I have looked at the formatDateTime function but the first argument to that expects only YYYY-MM-DD ?