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.
所以我很惊讶没有热键可以做到这一点。我在微软的网站上查看了 Excel 热键,但没有。
我想要做的就是有一个热键来复制我当前选择的单元格的内容。我根本不想用我的鼠标。这可能吗?Microsoft 提供的唯一解决方案是:
微软说明
为什么没有热键呢?可以制作一个吗?这会让我的生活轻松很多。
您必须将宏分配给您自己的热键,但这会将 ActiveCell 文本添加到剪贴板。添加对 Microsoft Forms 2.0 对象库的引用
Sub hotKeyCopy() Dim DataObj As New MSForms.DataObject Dim copyText As String copyText = ActiveCell.Text DataObj.SetText copyText DataObj.PutInClipboard End Sub