Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想以以下格式获取今天的日期:mmddyyyy. 即使是 8 月 1 日,我仍然希望前面有零,就像这样:08012012.
mmddyyyy
08012012
我想我可以使用 DatePart 函数,但我不确定如何。有人有想法吗?谢谢。
您不说是哪个应用程序,但在 VBA 中,您可以说:
Format(date(),"mmddyyyy")
Application.Text(Date(),"mmddyyyy")
Format(NOW,"mmddyyyy")
NOW 也提供时间:
Format(NOW,"hh:mm:ss")