Re: Exclude entry when certain field is blank
- From: "Lynn Trapp" <ltrapp_NOSPAM@xxxxxxxxxxxxxxxxxxxxx>
- Date: Tue, 6 Sep 2005 11:28:05 -0500
Do you simply want to make certain fields invisible if the date field is
NULL? If so something like this should work.
If IsNull(Me.YourDateField) Then
Me.SomeField.Visible = False
Else
Me.SomeField.Visible = True
End If
--
Lynn Trapp
MS Access MVP
www.ltcomputerdesigns.com
Access Security: www.ltcomputerdesigns.com/Security.htm
Jeff Conrad's Access Junkie List:
http://home.bendbroadband.com/conradsystems/accessjunkie.html
"dclarcq" <dclarcq@xxxxxxxxxxxxxxxxxxxxxxxxx> wrote in message
news:9A174973-CC24-486B-A1F1-9FB87F7A8E83@xxxxxxxxxxxxxxxx
> In 2000, when running my report I need to leave out all entries when a
> certain date field is missing data.
.
- Follow-Ups:
- Re: Exclude entry when certain field is blank
- From: dclarcq
- Re: Exclude entry when certain field is blank
- References:
- Exclude entry when certain field is blank
- From: dclarcq
- Exclude entry when certain field is blank
- Prev by Date: Re: Bold face entry date fields that are past the current date.
- Next by Date: Re: Foreign Key
- Previous by thread: RE: Exclude entry when certain field is blank
- Next by thread: Re: Exclude entry when certain field is blank
- Index(es):
Relevant Pages
|