如何将日期中的月份替换为特定月份?

时间:2019-05-14 16:20:56

标签: excel

我有不同月份的日期列表,我需要用特定月份(在这种情况下为12月)替换月份。

我试图将日期格式转换为以单词显示月份,例如01表示Jan。然后,使用替换向导将Jan替换为Dec。但是失败。

For example:
Current Date  Expected Date
18/01/2018    18/12/2018
20/02/2018    20/12/2018
31/03/2018    31/12/2018
04/04/2018    04/12/2018
19/05/2019    19/12/2018

1 个答案:

答案 0 :(得分:2)

如果日期是真实日期,则:

=DATE(YEAR(A2),12,DAY(A2))

enter image description here