I have implemented a “Created” column type. It inserts date and time in this format:
2023-05-15 16:25:57
I would like to format it to only show only the date in this format:
15.05.2023
It does not look as if the column itself offers any options to format it. I am presuming that I will need to add a formula column ( day({column}) & “.” & month({column}) & “.” & year({column}) )to re-format the date and then hide the original column. Or is there another way?