Share via

Creating an ID from the date in Excel

Anonymous
2022-05-31T11:28:03+00:00

Good day everyone,

How do you create an ID from the date, for example:

If today is the 31/05/2022 I would like the ID to be "AE31"

where A represents the year

E represents the 5th month

and 31 is the date

Also, please note that there is a column where the date is entered, so I would like to take that date and create the ID as above

Could someone help me, please and if any other information is needed please feel free to ask me

Microsoft 365 and Office | Excel | For business | Windows

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

Answer accepted by question author

Andreas Killer 144.1K Reputation points Volunteer Moderator
2022-05-31T13:43:25+00:00

If the date is in A1:

=CHAR(YEAR(A1)-1957)&CHAR(MONTH(A1)+64)&DAY(A1)

Andreas.

Was this answer helpful?

1 person found this answer helpful.
0 comments No comments

2 additional answers

Sort by: Most helpful
  1. Anonymous
    2022-05-31T14:07:17+00:00

    It worked! Thank you so much Andreas!

    Was this answer helpful?

    0 comments No comments
  2. Anonymous
    2022-05-31T11:33:09+00:00

    Was this answer helpful?

    0 comments No comments