Forum Discussion

sparks6910's avatar
sparks6910
Copper Contributor
Apr 16, 2023

CHANGE THE ORDER OF A CELL DATA NUMBER

IF I WANT TO CHANGE THE ORDER OF A CELL DATA NUMBER SEQUENCE AUTOMATICALLY FROM 123/09/2022 TO 2022/09/123 HOW DO I DO IT

2 Replies

    • ND_Pard's avatar
      ND_Pard
      Copper Contributor
      Assuming the cell is "text" and it is in cell: A1, the formula to convert 123/09/2022 to 2022/09/123 would be:
      =Right(A1,4) & mid(A1,4,4) & Left(A1,3)

      Good Luck!

Resources