Recent content by JVermast

  1. J

    Saving a form's sort field

    I have a form that has a bunch of project information and scrolling buttons at the bottom to browse by next/last. Right now the form is sorted by the ID associated with the project, which kinda sucks because they were and are not put in alphabetically. I discovered if you right click on a...
  2. J

    Wildcard Queries

    Maybe you can't do it :(
  3. J

    Wildcard Queries

    I think you are misunderstanding what I am saying. I basically need 3 outputs. 1 output describes ALL of the records with ANY status in my check box field. I was hoping to use the "thirdstate" option of a checkbox (puts a gray square in it). The other 2 (0/1) are straightforward and bring back...
  4. J

    Wildcard Queries

    I need the check box to return all results if its say...in the thirdstate, and the individual status whether its 1 or 0
  5. J

    Wildcard Queries

    I'm also wondering if there is a wildcard for a checkbox, if anyone can answer that.
  6. J

    Query Based on 2 out of 4 criteria?

    How about a screenshot of your query and your tables.
  7. J

    ListBox parameters problem

    Yeah I know some guys from Essex, UK. Niall Chadwick for one. Maybe you know him! Essex is a town in the province of Ontario.
  8. J

    Showing a value if the data in a form field = something

    I have a form field with a date in it, is there any way I can make the value in that field display one thing, but still run a query based on the original text? for example: txtDate is 1/1/1000 if txtDate = 1/1/1000 then display = "*" but the query still runs on 1/1/1000 I am asking this...
  9. J

    ListBox parameters problem

    Colin my hometown is Essex :) (Canada)
  10. J

    Help Please

    You will need to create and update query with the criteria "+%%%3*" and the update as "+%%%71*" Should work for you.
  11. J

    Query Based on 2 out of 4 criteria?

    Make the default for all 4 fields "*" and use "Like [Forms]![DailyWorkForm]![commonth]" etc for your criteria.
  12. J

    Wildcard Queries

    I'm saying that doing something like this "Between * and *" for a date has never been done and the only way people can figure out how to do such a "wildcard" is to use "Between 1/1/1000 and 1/1/3000" therefore including all dates possible for computing and then some. In my case, I am using a...
  13. J

    Wildcard Queries

    I did a bit of reading, seems between date wildcards a bit of a mystery in the access world.
  14. J

    Wildcard Queries

    Yeah that documents "Like" but im not sure Between is the same thing
  15. J

    Wildcard Queries

    I have another question on this topic, I also have dates that I want to be wildcarded, I have tried using just a simple * for the "Between [field] and [field]" to get "Between * and *" but this does not work as I had hoped. Is there a special way to do a wildcard for a date?
Back
Top Bottom