Recent content by jasonfl1

  1. J

    How would you do this?

    How would I do this then?
  2. J

    How would you do this?

    In my form I have a sub/form which is based off a query just showing a few fields from the customers table. I can type a filter into my main form which affects the subform using the VBA code: Private Sub cmdFilter_Enter() Me.frmCustomerListing.Form.Filter = "tblCustomers.Firstname LIKE '*"...
  3. J

    Criteria between 2 changing dates

    Im not having much luck, how on earth do you do that? IIf(Date()<#Year(Date)-06-23#,0,1) :confused:
  4. J

    Criteria between 2 changing dates

    Well exactly that was the next problem. Any recommendations to make this fully automatic?
  5. J

    Criteria between 2 changing dates

    Doesn't seem to work, it could be because the date/time field doesnt actually have a format and they are all in uk format dd/mm/yyyy I tried this because its more what I need: Between DateAdd("YYYY",IIf(Date()<#23/06/2008#,0,1),#06/06/2007#) And...
  6. J

    Criteria between 2 changing dates

    Oh this is what I have currently: >=#06/06/2007# And <=#23/06/2008#
  7. J

    Criteria between 2 changing dates

    In my criteria for my query I need it to return results between 6th June 2007 and 23rd June 2008 (inclusive). The catch is that after 23rd June 2008, the criteria should return results between 6th June 2008 and 23rd June 2009! Is this possible or will I have to edit the criteria manually? The...
Back
Top Bottom