Search results

  1. 3

    Help with inserting a 'UNION ALL' *SQL query*

    Re: Help with inserting a 'UNION ALL' *SQL query* [RESOLVED] I've got it working! What I did was delete a table that had 'RIGHT JOIN' to it and did a 'UNION ALL' on each table, but this resulted in deleting the STATES column (which wasn't needed anyways). I've attached the result I got. The...
  2. 3

    Help with inserting a 'UNION ALL' *SQL query*

    Hi all, I need assistance in putting 'UNION ALL' into the following SQL statement: SELECT [zTBL_STATE_GROUP_TABLE 3].STATE, [zqry_nsw/act inconjunctiontable 3].[Total (in conjunction)], [zqry_inconjunction_QLD TABLE 3].[Total (in conjunction)], [zqry_inconjunction_SA/NT TABLE 3].[Total (in...
  3. 3

    Count By Suburb

    Hi jal, I also tried your solution and it works. Your example database "Suburbs.mdb" illustrated the solution very well. Thank You so much, Dave.
  4. 3

    Count By Suburb

    Hi Galaxiom, Thank You so much, it worked very well, I go the results needed. Thank You, Dave.
  5. 3

    Count By Suburb

    Sorry, I left out one column, it should be: ---------------------------------------------------------------------- ID- Shop Type-Shop Name-Address1 - Address2 - Suburb - State-Yes/No ---------------------------------------------------------------------- Thank You, Dave
  6. 3

    Count By Suburb

    Hi All, I'm having difficulty counting the number of "Y" and "N" for each suburb. Details: The Table - -------------------------------------------------------- ID- Shop Type-Shop Name-Address1 - Address2 - Suburb - State -------------------------------------------------------- 1 - LP-...
  7. 3

    Search for match

    Hi jjturner, Thank You X 1000 Cheers, Dave
  8. 3

    Search for match

    Hi all, I have two sets of columns in MS Access 2003. Column 1: contains suburb + state code, e.g. Altona VIC Column 2: Cotains suburb name, e.g. Altona Would like to find a match for each suburb name, but the state code in column 1 is a problem. I've tried using "Not Like" and the...
  9. 3

    "Search Complete" Message box.

    Hi SOS, Thank You so much for your help, it worked really well!
  10. 3

    "Search Complete" Message box.

    Hi, I'm currently designing a database and considering using the following application as a template: http://allenbrowne.com/ser-62.html But I want it to show a "Search Complete" message box after the search is finished. Any tips would be very much appreciated. Thanks You...
  11. 3

    Form Help

    Can you give me some more information on the two or four tables that you've created?
  12. 3

    How to Activate keyboard function from ms-access

    Sorry I meant the macro one.
  13. 3

    Adding DATE filter to Multi Search Form

    That's great!!!! I also learnt a few useful things from George145 as well.
  14. 3

    How to Activate keyboard function from ms-access

    Please post your code.
  15. 3

    Adding DATE filter to Multi Search Form

    Looks like an assignment. I won't tell exactly what the answer is, but I'll guide you there. Anyways, here are some code that may get you going. I haven't tested the codes yet. Also you need to add two more text boxes. Good Luck! Code: 'Date example If Not IsNull(Me.txtStartDate) Then...
  16. 3

    Going Crazy - Removing from form

    Try changing the foreign key names to its Primary keys name. e.g. "c_parentId to "parentId". Also change your code accordingly.
  17. 3

    Find duplicates within a time range

    Just for now try doing this: For the TAC column, do a Trim function to get rid of those ":", then create a primary key and a foreign key(primary key ID -1) column, self join the two columns, and do the calculations. Example: [TAC] 9:43 9:50...
  18. 3

    Going Crazy - Removing from form

    Please post a picture of the relationship diagram between the tables. I think there may be a flaw there.
  19. 3

    How to refresh my form

    Found a website that may hopefully assist you. Sample code for timer code + refresh form: http://www.blueclaw-db.com/access_event_programming/timer.htm
  20. 3

    Creating a Subform

    Hi, We will start with Question A. When you are in the form wizard: - under "Tables/Queries" select Query:XXX (books with baic info table) - Click on the ">>" -Next -Option button "Datasheet" -Finish After these steps go into "Form View", this should show you the form with the tables info...
Back
Top Bottom