Hello Community I use the ddmmyyyy date forma...

Hello Community I use the ddmmyyyy date format, but when I concatenate a date type column into a text type virtual column, the date is shown mmddyyyy. I can not find an expression that converts date format. Can I make it look good?

0 4 669
4 REPLIES 4

You can combine values like CONCATENATE(DAY([Date]),MONTH([Date]),YEAR([Date]))

I would have to decompose the whole date and time and then accommodate it. My question was if there is no expression to format the text. Thank you anyway. Itโ€™s not something so serious โ€ฆ I leave it like this โ€ฆ

Have you tried to use TEXT exrpression TEXT([Date]) inside of your CONCATENATE?

Yes it worked! I was looking for a text expression, but I assumed it had to have a format argument. for example:

TEXT ([Date], โ€œdd/mm/yy hh:mmโ€) Many thanks!

Top Labels in this Space