Boa noite
Precisava de combinar o comando Dlookup com duas tabela no mesmo Form.
Private Sub Analise_Exit(Cancel As Integer)
If (Not IsNull(DLookup("[sys]", "Tabela1", "[sys] ='" & Me!sys & "'"))) Then
MsgBox "A Análise Já está Registada Neste Documento .", vbQuestion, "Aviso"
Me.analise.SetFocus
Exit Sub
End If
If (Not IsNull(DLookup("[sys]", "Tabela2", "[sys] ='" & Me!sys & "'"))) Then
MsgBox "A Análise Já está Registada Neste Documento .", vbQuestion, "Aviso"
Me.analise.SetFocus
Exit Sub
End If
End Sub
Precisava de combinar o comando Dlookup com duas tabela no mesmo Form.
Private Sub Analise_Exit(Cancel As Integer)
If (Not IsNull(DLookup("[sys]", "Tabela1", "[sys] ='" & Me!sys & "'"))) Then
MsgBox "A Análise Já está Registada Neste Documento .", vbQuestion, "Aviso"
Me.analise.SetFocus
Exit Sub
End If
If (Not IsNull(DLookup("[sys]", "Tabela2", "[sys] ='" & Me!sys & "'"))) Then
MsgBox "A Análise Já está Registada Neste Documento .", vbQuestion, "Aviso"
Me.analise.SetFocus
Exit Sub
End If
End Sub