如何在工作表上暂停宏工作创建多个图形,研究它们,研究各种单元格然后恢复宏?
我尝试使用暂停宏的MsgBox
,但不会让我在工作表上工作。我做了很多谷歌搜索无济于事。
答案 0 :(得分:2)
这是一种典型的机制:
Sub TwoParts()
' do the first part
MsgBox "Enter a value in A1 when done"
While [A1] = ""
DoEvents
Wend
MsgBox "Proceeding with second part actions"
' do other stuff
End Sub
我们: