Recent content by Maggie23

  1. M

    Message Boxes

    Thanks Rob Thanks so much for your help. Everything seems to be working great. You've been a major stress reducer!! Maggie
  2. M

    Message Boxes

    I'm making progress but ... I used the undo code to validate the uniqueness of one field - works fine. I wanted to use it on another field but get "data type mismatch in criteria". I copied the code from the first field and pasted it to the next field's event procedure. The only change was...
  3. M

    Message Boxes

    Thanks for the help but still having a problem. I entered the code in the control of the AccessionID field on my form as a BeforeUpdate event as follows: Private Sub ID__BeforeUpdate(Cancel As Integer) If Not IsNull(DLookup("AccessionID", "Booklist", "AccessionID=" & Me!Control)) Then Cancel =...
  4. M

    Message Boxes

    My form has two fields that do not allow duplicates. When I go to save a record if either field is a duplicate the message comes up "can't go to specific record". I need a clearer message than that to tell users who are even more novice than I am that they have entered a duplicate in one or...
  5. M

    Can't enter new records

    A form I have been using now won't let me add a new record. I have entered over 100 records with the form no problem so I'm not sure were this error is coming from. One field(named AccessionID) on the form requires a unique number. When I type in a number I know is unique it comes back and...
  6. M

    Customize report

    DCX - thanks for your suggestion. I've tried that and for some reason on each card the fields on each card get a little more off progressively. This is going to be about the best I can do I think though. Thanks again. Mag
  7. M

    Customize report

    Posted this earlier but go no response so am trying again. I am trying to print a report that prints 4 records on a page. The paper I have is prescored for 4 cards in 1 vertical column on a page. I can create a report and get 4 records vertically on a page no problem but how do I get them...
  8. M

    Custom Label

    I am trying to print custom labels that are on an 8x12" page. The labels are 3"hx5w" with 4 to a page, 1 column. I can't seem to customize a label correctly. I don't see an option to indicate how many labels on a page when I try to customize a stock label. In my page setup I do have it set...
  9. M

    Hel with "Between" criteria

    I have a query using a date field to return records for date range. In the date field I am using the "between - and" critieria. It works fine except when I use the current date for my beginning and ending dates. The report returns errors in the date range with no other data. I am getting...
  10. M

    Query for the current day's new records

    Thanks all so much for your help. Jon the example was great. (I see a couple of others downloaded it also). I am fairly new to Access and this project is a case of volunteering to put together a simple little database for a library that has grown into something way past me - but I'm trying...
  11. M

    Query for the current day's new records

    Thanks for your help - a little more please. TheDate() criteria worked and listed all the records for today. Is it possible to list only the beginning ID and ending record ID for the day? I just want to show the range of IDs entered for the current date not every record ID. Is that possible...
  12. M

    Picking records to print

    Keith Thanks for your help. The between expression was just what I needed for part of my problem. For the other part I see that what I need is more help with a query. I have posted a revised question in that forum. Mag
  13. M

    Query for the current day's new records

    Hi - I had originally posted my question under reports but with the help I got for part of it I think I should have posted under queries. I am trying to create a query that would show me the first and last ID# and Lname of new records added during the day. It was suggested to try ">Date ( )...
  14. M

    Picking records to print

    Hi - I know what I want to do but don't know where to begin. I have only one table that I need to get information from. After a user enters new records for the day I want them to be able to open a form that shows the day's (or session's??) first new record ID and the last new record ID...
  15. M

    Show last record ID#

    When I enter a new record's data on a form I would like the ID# I had entered for the last record to show up - so I know which ID# to use next. I want to see the last ID# entered everytime I use this form. Can someone tell me how to accomplish this? (Also I can't use autonumber in the ID...
Back
Top Bottom