Search results

  1. M

    Restart AutoNumber

    deleting the row from the table design view, saving and putting it back again might make it restart from 1 (or 4000 lol). might be a bit of a problem if u have relationships coz it won't let u delete it.
  2. M

    Restart AutoNumber

    Vassago's reply to a similar post solved my problem. Compacting the database did the trick.
  3. M

    Restart AutoNumber

    Is there a way to restart the AutoNumber of a field (set as a primary key) to increment from 1? The only method I know of is to delete the field from the table design view and put it back, however I can't do this coz of the relationships. Thanks.
  4. M

    Date() not working

    tried to change the name of the date field in the query, format, etc. unsuccessfully so i had to go around it and prompt the user to enter a date
  5. M

    validation rule

    coz the error message is too long and might not be very clear for a user - is it possible to customise it?
  6. M

    validation rule

    I need to make a validation rule so that a user is not allowed to enter duplicate values in a "tools" table. How can I make it look in the Tool Name field to search for duplicate values?
  7. M

    Clear

    it works like this.. users fills the form and clicks the button. a new form opens, which writes values to a table, and closes. now i want to close the original form as well (or go to a new record), however, since the form is not empty, a new record is being created in the table - and i do not...
  8. M

    Clear

    Couldn't make that work. I need to put it inside a macro to clear all items in a form before closing. Do asteroids orbit planets? :)
  9. M

    Clear

    Is there a command or something that would clear all entries in a form (as if the user has pressed Esc)?
  10. M

    Date() not working

    it's a medium date
  11. M

    Date() not working

    Hi, I want to show all transactions which took place on the current date, so I put Date() in the criteria. However, I'm getting an error: "This expression is typed incorrectly, or it is too complex to be evaluated." If I type a date (say 28-7-3), it would work perfectly. Can't find where the...
  12. M

    Today's Results

    I already tried putting Date() in the criteria of the query, but I get an error: "expression typed incorrectly or too complex..."
  13. M

    Today's Results

    Hi, Is it possible to filter data in a report? I need to show results of today's date. The results are sorted by Date, however I would like to show only the trasactions which happened today. Thanks, Mike
  14. M

    access 97 and 02

    Hi, I am using access97 at work and need to work on the same database at home, where I have the 2002 version. Will I have any problem, or are they fully compatible?
  15. M

    Positioning a Form

    ...and that solved my problem :) Thanks
  16. M

    today's transactions

    I managed to solve it by writing ">=Date()" in the criteria, instead of just "Date()"..don't ask me how or why but it works like that. To answer you.. The rows with negative quantites were not appearing at all in the query, and they appeared correctly in the table. If I run the query without...
  17. M

    Positioning a Form

    Is this too stupid a question for a reply? :) I wasted almost an hour trying to move the thing a side, but it just stayed there :)
  18. M

    today's transactions

    [Stores (Mosta) Transactions] is a table. Transaction No, Date, Tool, Location, Quantity are stored for every item issued/received.
  19. M

    today's transactions

    SELECT [Stores (Mosta) Transactions].[Transaction Date], [Stores (Mosta) Transactions].[Reference No], [Stores (Mosta) Transactions].[Location ID], [Stores (Mosta) Transactions].Quantity, [Stores (Mosta) Transactions].ID FROM [Stores (Mosta) Transactions] GROUP BY [Stores (Mosta)...
  20. M

    today's transactions

    positive values are coming from "Quantity Returned" in "Returns" form. negative values come from "Quantity Issued" in "Issues" form. I haven't set any criteria for Quantity in the query...shall I?
Back
Top Bottom