Date() function change the date format

What make the Date() function to change the date format?

I use the following formula Concatenate([Abréviation]," “,Date([Date]),” ",[Nom]). It appears that the date format is change by this function.

Solved Solved
0 3 289
1 ACCEPTED SOLUTION

In this case, I think you will need to use TEXT() to designate the format you would like:

Here’s an example in that article:

TEXT(“2019-11-01”, “dd/mm/yyyy”)

So, if you want 2020-04-09

Concatenate([Abréviation]," “, TEXT([Date],“yyyy-mm-dd”) ,” ",[Nom])

should work.

View solution in original post

3 REPLIES 3

In this case, I think you will need to use TEXT() to designate the format you would like:

Here’s an example in that article:

TEXT(“2019-11-01”, “dd/mm/yyyy”)

So, if you want 2020-04-09

Concatenate([Abréviation]," “, TEXT([Date],“yyyy-mm-dd”) ,” ",[Nom])

should work.

This will work in my scenario. Thanks @Kirk_Masden!

I use, in Google calendars:

CONCATENATE(DAY([Start]),"/",MONTH([Start]),"/",YEAR([Start])," ",TIME([Start])) 

result 

Sara_Bertomeu_0-1649270747912.png

Thanks Sara

 


 

Top Labels in this Space