Given a test score in A1, I have to create a command button that will assign the word "Pass" or "Fail" to cell B1. Pass is a score of 60 or greater, and Fail is a score of less than 60.
I have some code started such as:
Score = Range("A1").Value
If Score <60 Then
Result = "Fail"
Else
Result = "Pass"
End If
I just wanted to know if this would satisfy my conditions.
Bookmarks