Boa tarde pessoas,
gostaria de saber se é possível incluir mais uma condição no filtro do relatório em destaque:
tipo:
DoCmd.OpenReport "rtl_produtividade_rel", acViewReport, "", Setor & Turn
sei que ta ainda meio vacaiado as condições mas para este critério ajudaria muito pra não ter que criar mais uma consulta e outro relatorio.
Private Sub Comando61_Click()
Dim Setor, Turn
Turn = ("[Turno] = [Formulários]![frm_produtividade]![lista70]")
Setor = ("[area] = [Formulários]![frm_produtividade]![area]")
If DateDiff("n", [dt4], [dt3]) > 0 Then
MsgBox "Data Final inferior a Data incial! ", vbOKOnly + vbExclamation + vbDefaultButton1, "ATENÇÃO"
DoCmd.Close acReport, "rtl_produtividade_rel"
dt4.SetFocus
dt4.value = ""
End If
If IsNull(dt3) Then
MsgBox "Data inicial não informada!", vbExclamation, "Atenção"
dt3.SetFocus
ElseIf IsNull(dt4) Then
MsgBox "Data final não informada!", vbExclamation, "Atenção"
dt4.SetFocus
ElseIf IsNull(area) Then
DoCmd.OpenReport ("rtl_produtividade_rel"), acViewReport
Else
DoCmd.OpenReport "rtl_produtividade_rel", acViewReport, "", Setor
End If
End Sub
agradeço
gostaria de saber se é possível incluir mais uma condição no filtro do relatório em destaque:
tipo:
DoCmd.OpenReport "rtl_produtividade_rel", acViewReport, "", Setor & Turn
sei que ta ainda meio vacaiado as condições mas para este critério ajudaria muito pra não ter que criar mais uma consulta e outro relatorio.
Private Sub Comando61_Click()
Dim Setor, Turn
Turn = ("[Turno] = [Formulários]![frm_produtividade]![lista70]")
Setor = ("[area] = [Formulários]![frm_produtividade]![area]")
If DateDiff("n", [dt4], [dt3]) > 0 Then
MsgBox "Data Final inferior a Data incial! ", vbOKOnly + vbExclamation + vbDefaultButton1, "ATENÇÃO"
DoCmd.Close acReport, "rtl_produtividade_rel"
dt4.SetFocus
dt4.value = ""
End If
If IsNull(dt3) Then
MsgBox "Data inicial não informada!", vbExclamation, "Atenção"
dt3.SetFocus
ElseIf IsNull(dt4) Then
MsgBox "Data final não informada!", vbExclamation, "Atenção"
dt4.SetFocus
ElseIf IsNull(area) Then
DoCmd.OpenReport ("rtl_produtividade_rel"), acViewReport
Else
DoCmd.OpenReport "rtl_produtividade_rel", acViewReport, "", Setor
End If
End Sub
agradeço