Oct 04 2023 02:46 PM
Have a column of dates with the wrong year:
??/??/22 need to change the year to ??/??/21
I've formatted the column to Text.
Selecting the column to limit Find
How do I Find the /22 year instances without also selecting days that also happen to be 00/22/22
Seems wildcard characters should work, but no?
Oct 04 2023 03:52 PM
@Hans Vogelaar works well, thanks for that
Can you help me with the replace formula?
Replace only the year without changing month/day/year?
Oct 05 2023 12:13 AM
SolutionLet's say you have dates in D2 and down.
In E2:
=DATE(2023, MONTH(D2), DAY(D2))
Fill down.