asked on
Hello,
I want open a form "frmMenù" where [DataIncarico] is a date. If [r1] AND [r2] are null i have something like "BETWEEN ## AND ##".
Is possible to change something in this code? I want:
Hello this is the code:
Private Sub cmdOpenRecords_Click()
DoCmd.OpenForm "frmMenù", , , "StatoPratica LIKE " & "'*" & [b1] & "*'" & _
" AND TVisita LIKE " & "'*" & [b2] & "*'" & _
" AND UfficioSinistri LIKE " & "'*" & [b3] & "*'" & _
" AND nSinistro LIKE " & "'*" & [b4] & "*'" & _
" AND TValutazione LIKE " & "'*" & [b5] & "*'" & _
" AND Liquidatore LIKE " & "'*" & [b6] & "*'" & _
" AND IDPaziente LIKE " & "'*" & [b7] & "*'" & _
" AND DataIncarico BETWEEN #" & [r1] & "# AND #" & [r2] & "#"
Forms![frmMenù]![SubFrmListaPratiche].Form.Filter = "StatoPratica LIKE " & "'*" & [b1] & "*'" & _
" AND TVisita LIKE " & "'*" & [b2] & "*'" & _
" AND UfficioSinistri LIKE " & "'*" & [b3] & "*'" & _
" AND nSinistro LIKE " & "'*" & [b4] & "*'" & _
" AND TValutazione LIKE " & "'*" & [b5] & "*'" & _
" AND Liquidatore LIKE " & "'*" & [b6] & "*'" & _
" AND IDPaziente LIKE " & "'*" & [b7] & "*'" & _
" AND DataIncarico BETWEEN #" & [r1] & "# AND #" & [r2] & "#"
Forms![frmMenù]![SubFrmListaPratiche].Form.FilterOn = True
End Sub