:banghead:
^That's exactly how I feel right now.
The thing I've been trying to do is make it so that my form filters my records, and I'm trying to make a between function for it. My form is shown below in the attachment.
What I need to do is make it so that my form filters my records Between the two year boxes AND between the two Length boxes. But I need it so that if nothing is in the boxes, it shows all records, and if something is in only the Year boxes, it only filters the years and not the lengths.
It's been really hard because I used the code:
Then in a separate column I had
This works fine if it's only for Length, but if I try to do the same for the MovieYear boxes, it screws up and just shows me no records...? 
I really have no idea how to make them both work! Any help would be greatly appreciated!
^That's exactly how I feel right now.
The thing I've been trying to do is make it so that my form filters my records, and I'm trying to make a between function for it. My form is shown below in the attachment.
What I need to do is make it so that my form filters my records Between the two year boxes AND between the two Length boxes. But I need it so that if nothing is in the boxes, it shows all records, and if something is in only the Year boxes, it only filters the years and not the lengths.
It's been really hard because I used the code:
Code:
Field: Length
Criteria: Between [Forms]![SearchForm]![Length1] And [Forms]![SearchForm]![Length2]
Code:
Field: [Forms]![SearchForm]![Length1]
Or: Is Null

I really have no idea how to make them both work! Any help would be greatly appreciated!