我剛開始VBA編碼和我在這裏打:如何定義範圍內可變
對於一個小區這個程序的工作原理:
Dim score As Integer, result As String
score = Range("A1").Value
If score >= 60 Then
result = "pass"
Else
result = "fail"
End If
Range("B1").Value = result
以及如何對單元格列?循環可以爲此工作? 我的代碼使用循環 - 但如何定義範圍內的變量?
Dim score As Integer, result As String, I As Integer
score = Range("AI").Value
For I = 1 To 6
If score >= 60 Then
result = "pass"
Else
result = "fail"
End If
Range("BI").Value = result
Next I
在此先感謝!
耶! :D我現在明白了;我的代碼{私人小組CommandButton1_Click() 昏暗得分作爲整數,導致作爲字符串,確定作爲整數 對於OK = 1至10 得分=細胞(確定,1)。價值 如果得分> = 60然後 結果= 「通過」 否則 結果=「失敗」 結束如果 細胞(確定,2)。價值=導致 接着確定 結束子} – mob