本文介绍了Excel日期到字符串转换的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
01/01/2010 14:30:00
我想将该日期转换为文本,并希望文本看起来像日期。所以日期值 01/01/2010 14:30:00
应该看起来像 01/01/2010 14:30:00
但在内部应该是Text。
如何在Excel中执行?
解决方案
= TEXT(A1,DD / MM / YYYY hh:mm:ss)
(24小时)
= TEXT(A1,DD / MM / YYYY hh:mm:ss AM / PM)
(标准时间)
In a cell in Excel sheet I have a Date value like:
01/01/2010 14:30:00
I want to convert that Date to Text and also want the Text to look exactly like Date. So a Date value of 01/01/2010 14:30:00
should look like 01/01/2010 14:30:00
but internally it should be Text.
How can I do that in Excel?
解决方案
=TEXT(A1,"DD/MM/YYYY hh:mm:ss")
(24 hour time)
=TEXT(A1,"DD/MM/YYYY hh:mm:ss AM/PM")
(standard time)
这篇关于Excel日期到字符串转换的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!