VBA 输入框条件设置不正确-需要结束宏
VBA Inputbox criteria is set incorrectly-Need to end macro
我是个白痴,把输入框设置成无限循环
InputBoxx:
Again = InputBox("Question?" & vbLf & "1) Answer 1" & vbLf& vbLf & "2) Answer 2" & vbLf & "3) Answer 3" & vbLf & vbLf & "Please Enter the number that corresponds to your selection")
If Again <> 1 Or Again <> 2 Or Again <> 3 Then MsgBox "Hey now, that wasn't one of the choices....", vbCritical: GoTo InputBoxx:
有没有办法在不关闭的情况下结束循环Excel?我按下了 Escape、Cancel 等
您必须按 Ctrl+Break 才能中断 运行。
我是个白痴,把输入框设置成无限循环
InputBoxx:
Again = InputBox("Question?" & vbLf & "1) Answer 1" & vbLf& vbLf & "2) Answer 2" & vbLf & "3) Answer 3" & vbLf & vbLf & "Please Enter the number that corresponds to your selection")
If Again <> 1 Or Again <> 2 Or Again <> 3 Then MsgBox "Hey now, that wasn't one of the choices....", vbCritical: GoTo InputBoxx:
有没有办法在不关闭的情况下结束循环Excel?我按下了 Escape、Cancel 等
您必须按 Ctrl+Break 才能中断 运行。