Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Kindly assist to run the below Excel macro. I think i'm missing some thing. Logic not working.

Sub RiskGrade()

Dim Value1 As String

Sheets("Sheet1").Select
If (Cells(10, 2) = "BX") Then Cells(12, 4) = -8
Exit Sub

ElseIf (Cells(10, 2) = "GX") Then Cells(12, 4) = -7
Exit Sub

Else
    For i = 12 To 14

        Value1 = Right(Trim(Sheet1.Cells(i, 2)), 1)
        'MsgBox Value1
        Select Case Value1
            Case "W"
                Cells(i, 4) = 1
            Case "H", "S", "R", "F", "G"
                Cells(i, 4) = 2
            Case "D"
                Cells(i, 4) = 3
            Case "C"
                Cells(i, 4) = 4
            Case "B"
                Cells(i, 4) = 5
            Case "A"
                Cells(i, 4) = 6
            Case "*"
                Cells(i, 4) = 7
            Case "M"
                Cells(i, 4) = 8
            Case "E"
                Cells(i, 4) = 9
            Case OTHER
                Cells(i, 4) = -9
        End Select
        Exit For
    Next i
End If

End Sub
share|improve this question
1  
This belongs on StackOverflow. Also, you need to document what isn't working. – KronoS Sep 24 '12 at 18:01

migrated from superuser.com Sep 24 '12 at 19:44

2 Answers

You've started an IF statement and in the same line added an action, which means it's not going to expect an END IF or ELSE after that.

In VB

IF condition THEN action

is a single IF statement.

Consider

If (Cells(10, 2) = "BX") Then
  Cells(12, 4) = -8
  Exit Sub
ElseIf (Cells(10, 2) = "GX") Then
  Cells(12, 4) = -7
  Exit Sub
...
share|improve this answer
  1. Case OTHER should be Case Else
  2. The Exit For will terminate the loop after the first time through, so that needs to be removed, or changed to where you want the processing to abort
  3. The If ... Then should be multi-line, or singleline.

    • Multi-Line:
      If (Cells(10, 2) = "BX") Then
      Cells(12, 4) = -8
      Exit Sub
      ElseIf ...

    • Single Line:
      If (Cells(10, 2) = "BX") Then Cells(12, 4) = -8 : Exit Sub
      ElseIf ...

      (note use of : to separate commands in same If statement)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.