bob fitz
AWF VIP
- Local time
- Today, 07:37
- Joined
- May 23, 2011
- Messages
- 4,806
Yes. Can you post a copy of the dbDo you know how to connect it with a drop down bar? Where I can pick the NM Value that should be the criteria ?
Yes. Can you post a copy of the dbDo you know how to connect it with a drop down bar? Where I can pick the NM Value that should be the criteria ?
Yes, sfTabelle1 was the name I gave to sub form.Just for my understanding:
-sfTabelle1 is the subform?
- I tried it on my main DB
changed the sfTabelle1 to my subform
changed the cmbTabelle1 to my method Name
changed the Column name
but it don't work :/
Is there a difference when there are relationships between tables?
Private Sub Kontrollkästchen21_AfterUpdate()
Me!sf_qry_all.Form.Filter = "Nächster Termin = '" <= Date +30 ""
Me!sf_qry_all.Form.FilterOn = True
Me.Kombinationsfeld6 = Null
End Sub
Private Sub Kontrollkästchen21_AfterUpdate()
Me!sf_qry_all.Form.Filter = "[Nächster Termin] <= #" & Date +30 & "#"
Me!sf_qry_all.Form.FilterOn = True
Me.Kombinationsfeld6 = Null
End Sub
Private Sub Kontrollkästchen21_AfterUpdate()
Me!sf_qry_all.Form.Filter = "[Nächster Termin] >= #" & _
Format(Date, "mm\/dd\/yyyy") & "# And [Nächster Termin] <=#" & _
Format(Date + 30, "mm\/dd\/yyyy") & "#"
Me!sf_qry_all.Form.FilterOn = True
Me.Kombinationsfeld6 = Null
End Sub