Hello,
I have seen this question pop-up a few times but never really any official answer.
I am pulling a date ("2021-04-01") from a csv file, which I would like to ingest in a form as a date object (using date()) in order to add 21 days to it and check against current date.
I am stuck at the first step though, I can't seem to be able to convert the string of a date to a date object.
So with my date being pulled from the csv and equal to '2022-04-01', stored as test_dob. date(string(${test_dob})) returns mismatch error, but if I do date(string('2022-04-01)) it works no problem.
So it makes me wonder how this date actually get stored in the back-end. And why it displays perfectly but doesn't get ingested as expected in the date function.
I have attached a csv sample and the table from which i am trying to pull (names are fake by the way). I am using the last S123 Connect
Thank you very much for your help.