我試着寫這將取決於值改變的結果的宏。 的數字是5位數字和只能是1,2或3如果值包含一定數量
如果數字都是1,則結果將是通。
如果數字包含2個,那麼結果將是行動。
如果數字包含3,則結果將失敗。
例如:
11111結果爲通
11211結果爲動作
32111結果失敗
這是代碼(下面),其我已經創建,但我不知道如何使用該STR控制或者即使我應該使用
Private Sub result()
Dim points As Integer, result As String
Me.txtresult.Value = Val(cboImage.Value) & Val(cbofruit.Value) & Val(cboveg.Value) & Val(cboProcedure.Value) & Val(cboDescription.Value)
points = Val(Me.txtresult.Value)
Select Case points
Case InStr(1, 1)
result = "Pass"
Case InStr(1, 2)
result = "Action"
Case InStr(1, 3)
result = "Fail"
End Select
Me.txtresult.Value = result
End Sub
感謝
謝謝sooo很多工作很好 –