0
在下面的excel 2010 VBA
我試圖創建一個用戶菜單,它在變量strInput
中存儲了一個選擇(只有2個選項)。該選擇將在稍後使用,但我不確定是否在下面這樣做。該部分的1或2是存儲的還是唯一的5位數字代碼?有沒有更好的辦法?非常感謝你:)。excel 2010 vba用戶菜單將變量存儲爲變量
VBA
Dim Msg, Title As String
Dim MyInput As Integer
' Define message."
Msg = "Which array was used ? " _
& vbNewLine & "Enter 1 for Design: 00000" & vbNewLine _
& "Enter 2 for Design: 11111"
Title = "Selection of Application" ' Define title.
While MyInput.Value <> 1 And MyInput.Value <> 2
MyInput = InputBox(Msg, Title)
Select Case MyInput
Case 1
MsgBox "User chose Design 1"
Case 2
MsgBox "User chose Design 2"
Case Else
MsgBox 「Invalid Entry. Try again.」
End Select
Wend
'STORE SELECTION '
Dim strInput As Integer
strInput = MyInput.Value
' CONVERT USER CHOICE '
If MyInput = 1 Then
strInput = "00000"
Else
strInput = "11111"
End If
期望:
用戶選擇1,因此00000
將被存儲在strInput
但用戶選擇2,所以將被存儲在strInput
我得到'While MyInput'無效限定符。謝謝 :)。 – Chris
我刪除了'.value',錯誤消失了,但看起來像1或2被存儲,而不是'00000'或'11111',是因爲'.value'?謝謝 )。 – Chris
我在我的帖子中編輯了'vba'來轉換用戶選擇(或者我認爲)。這是正確的/正確的方式?謝謝 :)。 – Chris