Problemas con If, Then y Else en macro
Tengo el siguiente código pero me sale el siguiente mensaje de "Error de compilación, Else sin IF"
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Target.Address = "$AQ$3" And ActiveCell = "GENERAR" Then Call ABRE
ElseIf ActiveCell = "NO GENERAR" Then
ActiveCell.Offset(1, 0).Select
End If
If Target.Address = "$AQ$4" And ActiveCell = "GENERAR" Then Call ABRE
ElseIf ActiveCell = "NO GENERAR" Then
ActiveCell.Offset(1, 0).Select
End If
If Target.Address = "$AQ$5" And ActiveCell = "GENERAR" Then Call ABRE
ElseIf ActiveCell = "NO GENERAR" Then
ActiveCell.Offset(1, 0).Select
End If
End Sub
1 respuesta
Respuesta de Dante Amor
1