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 342
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