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.
如果我想将当前日期格式更改为 20,例如,我可以使用命令
OptionsViewEx DateFormat:=20
但是我怎样才能获得当前的日期格式(或任何其他视图选项)?
如果您使用Date函数获取当前格式的日期,但如果您需要更改使用format(Date,"yyyy-mmmm-dd")例如。
Date
format(Date,"yyyy-mmmm-dd")
DefaultDateFormat应该是要使用的功能。
DefaultDateFormat
oldvalue = Application.DefaultDateFormat Application.DefaultDateFormat = 20 ' or = pjDate_mm_dd_yyyy
这将获取或设置默认日期格式。(技术网)
这给出了格式类型的完整列表。