Date format

Hello guys,

I have a virtual column with:
CONCATENATE([DATE]," - ",[Name])

The date in the date column is dd/mm/yyyy.
In the CONCATENATE column is mm/dd/yyyy.

Why and any idea on how to fix it?
I want dd/mm/yyyy.

(in Google Spreadsheet is also stored as dd/mm/yyy)

Thank you!

Solved Solved
0 5 387
  • UX
1 ACCEPTED SOLUTION

With the virtual column, use DAY([Date])&"/"&MONTH([Date])&"/"&YEAR([Date])

View solution in original post

5 REPLIES 5
Top Labels in this Space