I imported some data to seatable -worked great so far. I want to group the data by month therefor I tried to change the format of my column to date. That was not possible due that fact that the column contains β2022-04-08 09:44:37 +0200β. I tried to create a new column and trim the unnessesary informaiton with : left({Paid at},10) - this shows only the date, but the format is still a string - any idea on how I can get this to work ?
I got another import column (DATUM) that cointains following string: β01.04.2022 17:31β.
The solution date(year(left({DATUM},10)), month(left({DATUM},10)), day(left({DATUM},10))) does not work here, due the fact that the date is not ISO coded - i guess it needs to be β2022-04-01β to work. any ideas on this to? @ayy
The βmid(string, start, length)β function might be a good choice.
e.g. mid(β01.04.2022 17:31β, 7, 4) to get the year, then similarly get the month and day.
Finally, use the βdate(year, month, day)β function to generate the date you want.