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.
我正在尝试获取月份的名称以比较它是否是当前月份。我正在查看的单元格中的内容通常是这样的:
=Today()
或者
10/24/2013
我试过复制和粘贴来获取名称而不是数字,但它没有这样做。我确定有一种方法可以从单元格中的值中获取月份名称,我只是不知道它是什么。
如果你有
=今天()
在一个单元格(比如 G19)中,将该单元格格式化为“mmmm”
然后在VBA中:
Sub Getmonth() MsgBox Range("G19").Text End Sub