Search results

  1. M

    Counting criteria

    Cheers mile, however, this is for SQL! I should'v posted in SQL forum not unless you have an answer
  2. M

    Counting criteria

    I am trying to count certain criteria in a column. The table looks like thisio: ID ------- NAME ------- DECISION 1 -------- John ------- APP 2 -------- John ------- APP 3 -------- John ------- APP 4 -------- John ------- DEC 5 -------- John ------- DEC 6 -------- John ------- APP 7...
  3. M

    Simple query

    Manmade... tip: it was only erected in the past year and resides in Europe...
  4. M

    Simple query

    Thanks m8. Heres a question: What and where is the world's largest sculpture?
  5. M

    Simple query

    Of course, read again ;)
  6. M

    Simple query

    Hello people, what a pleasent day it is. I was wondering if you could help me with this simple query. Here's my table: tblMain ID-----SalesExec----PPP 001---John-----------0 002---John-----------1 003---John-----------1 004---John-----------1 005---Fred-----------0 006---Fred-----------0...
  7. M

    Group by currency ranges

    Hi, I want to run a query that will count and group records into specified income brackets. Similar to the age bracket query here: http://www.access-programmers.co.uk/forums/showthread.php?s=&threadid=51077 Here is the table in question: tblMain ID ------ Income 101 ----- £12,000 102 -----...
  8. M

    Age bracket query

    Sorry, stupid me! The funtion is GETDATE
  9. M

    Age bracket query

    dcx693: I am trying to use this query on SQL but it doesn't understand the DATE function. The exact error is: ADO Error: Date is not a recognised function name Do you know what the translation would be?
  10. M

    Table design ideas needed (warning!! very long post)

    I need some advice in designing tables and queries for a credit card application logging system. The initial table design was so bad that it made it really difficult for me to design the all important queries. So I have decided to start from scratch again and redesign the tables. I will...
  11. M

    My VB coding is terrible! Please help

    I cant tell you coz I dont get any errors!
  12. M

    My VB coding is terrible! Please help

    I made the following code to validate dates entered in a text box. The code works fine in Access XP but doesn't work in Access 97, 2000. I have put in down to my bad coding techniques! Here is the code I have used. Can somebody knock me into shape? Private Sub txtDispDate_AfterUpdate() '...
  13. M

    Count and order records by day

    I am trying to make a query that will count records and sort them day by day. Here is the table example: tblMain RecordID ----- DeviceName --------- User ------------- DateTime =============================================== 00001 -------- PC001 ---------------- John Doe ------- 01/01/2003...
  14. M

    Date validation (if today - 1 week then)

    The vb is not liking the BETWEEN bit. Is says: Compile error. Expected Then or Goto? Any ideas
  15. M

    Date validation (if today - 1 week then)

    Thank Mile, how do I implement this in VB? Or is it just for SQL? EG. Is it like: IF ME.txtAppDate.Value Between txtDateTimeKeyed And DateAdd("d", 7, txtDateTimeKeyed) then "TO OLD"
  16. M

    Date validation (if today - 1 week then)

    Sorry for another Date validation question. I've done some searching but I cant find what I'm loooking for. I need a validation rule that would make sure the date entered was not older that 1 week from todays date. I have a field 'txtDateTimeKeyed' which contains the current date and time...
  17. M

    Help in making a query

    Did you come up with any ideas?
  18. M

    Help in making a query

    Thanks mate. That's very kind. For you reference, heres a screen grab of the form itself. All data in the left pane is logged to tblMain and all data in the right pane is logged to tblApplicationErrors There are five combo boxes which all contain the same values. (assuming that there...
  19. M

    Help in making a query

    Understood, Could you further advise on a better table design? I cant see any other way of storing the data Thanks
Back
Top Bottom