Crear if con dos campos
Quiero saber como poder hacer un if con dos campos en el código de access, pensé en este, pero no funciona:
Private Sub Form_Open
.......
If age >= 45 Then
If Me.Marco99.Value = 2 Then
MsgBox "hola", vbInformation
End If
End If
End Sub
también probé con
Private Sub Form_Open
.......
If age >= 45 and If Me.Marco99.Value = 2 Then
MsgBox "Quillo que viejo ere, con " & age & " años" & " y sin currar, ya te vale pincha", vbInformation
End If
End Sub
¿Qué me falla?
1 Respuesta
Respuesta
1