我有几个单元格可以使用“FormatDatetime”函数填写日期,
代码:
Range("AX1") = FormatDateTime((Docx.getAttribute("r1ed")))
Range("AX2") = FormatDateTime((Docx.getAttribute("r2ed")))
Range("AX3") = FormatDateTime((Docx.getAttribute("r3ed")))
Range("AX4") = FormatDateTime((Docx.getAttribute("r4ed")))
如果日期用“.”分隔 所有单元格都将显示为“12.1.2013”,但如果我更改以“-”分隔的系统日期格式,“AX4”显示日期仍为“12.1.2013”。但其他显示正确。
我需要解决这个问题,因为我稍后在 VBA 中使用这些日期进行计算。
请提出一些答案。