Announcements
This site is in read only until July 22 as we migrate to a new platform; refer to this community post for more details.

Convert Date

Hi,

I need to convert number / text : “210506” (21=year 05=month 06=day) to format Date as dd/mm/yyyy
how can i do that ?
Thanks all

Solved Solved
0 2 242
1 ACCEPTED SOLUTION

Steve
Platinum 5
Platinum 5

This?

CONCATENATE(
  RIGHT([Text], 2),
  "/",
  MID([Text], 3, 2),
  "/",
  ("20" & LEFT([Text], 2))
)

See also:

View solution in original post

2 REPLIES 2
Top Labels in this Space