Search results

  1. A

    Oh the irony

    Found this while browsing around
  2. A

    Compiling multiple queries...

    Well, it's still being difficult. I've made the append query but I'm still having issues with the fact that access does not want to join the queries, thus not returning any results at all
  3. A

    Compiling multiple queries...

    Sounds like problem solved. I hope. Thanks
  4. A

    Compiling multiple queries...

    exactly that. I am trying to have a row of data showing for each record much like: Name | count of dates a-b | count of dates b-c| ----- that is my ultimate goal. Would I be better off if I create an append query that writes to a temporary table, in the layout that I want, and just...
  5. A

    Compiling multiple queries...

    I've been playing with the subreport, but it's not really accomplishing what I am intending.
  6. A

    Compiling multiple queries...

    The purpose is to create a report, but the whole reason I'm building this database is to create a report that mimics the old spreadsheet that was being used before. I'm open to suggestions.
  7. A

    Compiling multiple queries...

    Access 2007 I've created a set of queries (nearly identical) to sum records dating back 9 weeks (1 qry/wk) which will eventually work it's way into a report. each query is as follows, except for the date range changes SELECT tblShippingList.Name, Count(tblReceived.ID) AS...
  8. A

    creating a count within a query

    I'm trying to build a query that will: a.) search within a certain date range b.) count the amount of records underneath each parent record c.) display each of the summarized parent records displaying only a sum of its children. part a: is the part I dont have a problem with. part b + c: I...
  9. A

    Resizing form display

    Access 2007 When I view my forms, they all take up the whole screen. How can I change this so that it is more like a window than a page?
  10. A

    Using Logic in query

    Thank you, I was stuck thinking in If-Then terms. problem solved
  11. A

    Using Logic in query

    I currently have a combobox set up in a form which the query references to sort through data. I am looking to create a checkbox that will let the query show all results. How can I set up the criteria in the query to accomodate this or will I need to create a second query and activate it when the...
  12. A

    dCount causing Run Time Error - 3078

    I am attempting to enable/disable a button based on the results of a query based subform. I am unsuccessful in the various attempts I have made. Everytime I run this I get an error regarding the object that it is pointing to in this case sfrRMUDayEdit Private Sub cmdShowData_Click()...
  13. A

    Query results quantity

    the query is currently being used in a subform, do I target the subform or the query?
  14. A

    Query results quantity

    Is there a way to record the number of results that a query produces? I'm trying to restrict actions of command buttons.
  15. A

    Modifying query parameters with form input

    Thanks for the advice, I couldnt get it working for the make-table, but once I moved it to the append query, it worked like a charm. Thx
  16. A

    Modifying query parameters with form input

    Worked like a charm in the criteria box, can this also be applied in the Field box? I have a make-table query, and I'm trying to make a bulk entry, all with the same date. But currently I am using the same concept, but it is not grabbing the date that it is pointing to in the Field. Field...
  17. A

    Modifying query parameters with form input

    Access 2007 I've created a query that has a date parameter, but how can I arrange it that I can collect the parameters for the query before I open the query inorder to avoid the parameters messagebox?
  18. A

    Automating form actions

    I guess the question really boils down to, how do I set my database up so that I can bulk create a set number of predetermined fields?
  19. A

    Allowing query to disregard columns

    thank you for the help, it solved the problem. I appologize again for my inadequate knowledge of the subject, but I am slowly trying to rectify this.
  20. A

    Automating form actions

    Well I guess I'll a better way of describing it... I have one table with a list of contacts. Everyday I need to create an entry for each of those contacts verifying if data has been received. This data is to be spread between 2 different tables (1st table, "received", has entries for date...
Back
Top Bottom