EXCEL VBA 中怎样写代码将日期格式转化为文本格式

2024-11-24 02:59:27
推荐回答(1个)
回答1:

dim dt as string

dt = format(range("A1"),"yyyy/mm/dd")
msgbox dt