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 191
1 ACCEPTED SOLUTION

Steve
Platinum 4
Platinum 4

This?

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

See also:

View solution in original post

2 REPLIES 2

Steve
Platinum 4
Platinum 4

This?

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

See also:

Thanks

Top Labels in this Space