如果输入框的答案是 ,我想运行一个宏yes
。
所以每次运行另一个宏时都需要问这个问题我需要问这个问题,直到用户在他们需要的所有日期完成宏。
我将输入框放在错误的位置,但不知道放在哪里。
Call ChangeDates
strMore = Application.InputBox(prompt:="Do you have any more dates to enter? Type Yes or No", Type:=2)
Do Until strMore = "no"
If strMore = "yes" Then
Call ChangeDates
End If
strMore = Application.InputBox(prompt:="Do you have any more dates to enter? Type Yes or No", Type:=2)
Loop