aragon123321
New Member
- Joined
- Jul 6, 2015
- Messages
- 26
Why will this not work?
Does anyone know how they could check each score in a range and run each cell through the If statment.
Here is what I have.
Thank You! Or if you have a link to where i could find the answer I would really appreciate that also.
Dim Cell As Integer, result As String
Cell = Range("B3:B15").Value
If score >= 6 Then
result = "pass"
Else
result = "fail"
End If
Range("B1").Value = result
Does anyone know how they could check each score in a range and run each cell through the If statment.
Here is what I have.
Thank You! Or if you have a link to where i could find the answer I would really appreciate that also.
Dim Cell As Integer, result As String
Cell = Range("B3:B15").Value
If score >= 6 Then
result = "pass"
Else
result = "fail"
End If
Range("B1").Value = result