Recent content by NLillith

  1. N

    Auto Populate 1 year after input date

    Thank you for fixing it Bob.
  2. N

    Auto Populate 1 year after input date

    So I got a bit of a start on it (with some help) and now I'm getting a 2158 error. Here is the original code that works: Private Sub Date_Due_Back_Click() Me.Date_Due_Back = DateAdd("yyyy", 1, Me.Backup_Date) End Sub Here's what someone who helped me come up with: Private Sub...
  3. N

    Auto Populate 1 year after input date

    Okay, so I was able to get it to populate to do what it is that I wanted it to do, which was auto populate 1 year after the date, but now, the person I am coding this for informed me that the "end of the year" backup tapes are kept indefinitely. So in the VB script, I'm looking to have an IF...
  4. N

    Coding Input Form

    Access 2010. It is structured similarily to Access 2007.
  5. N

    Coding Input Form

    So I have a general database question about forms. On an input form, I have two places where a user can input the date. I want them to be able to be able to type mm/dd/yyyy as any other date as mmddyyyy and it will then parse and set it up to look like mm/dd/yyyy. Is there a way to be able to...
  6. N

    Querying using like statement

    Brian - that was exactly what I was looking to get it to do, thank you very much. Now to see if I can get the report to hold all the values.
  7. N

    Querying using like statement

    The [backup date text] is the record in the table, called tapes, which was in my SQL link before.
  8. N

    Querying using like statement

    Taruz, While that would work, I am still getting the same error that I was before about the expression being too complex.
  9. N

    Querying using like statement

    So now, I need to be more specific with another query. I have it set up where it is querying the back up date text, but I also want it to be able to pull the year too, I get the error: "This expression is typed incorrectly, or it is too complex to be evaluated. For example, a numeric...
  10. N

    Question Possible Corrupted Database

    I appreciate everyone's help throughout this process. All seems good to go now and the data can finally be added to the database.
  11. N

    Question Possible Corrupted Database

    We need the date due back and the back up date in the table to print to the report because as I said, we re-use the tapes. Also, like I said, we are not going to be using relationships and they are not necessary at this time. The back up date is the date that the tape was taken out of the...
  12. N

    Question Possible Corrupted Database

    Okay, the way I have it set up is so that when you are entering data, the status is a combo box that you have to click on and select. It was done that way on purpose. We do not have relationships because those were not necessary at the point. The first two questions are answered by this: they...
  13. N

    Question Possible Corrupted Database

    Being that we had one record for testing purposes only, I have removed that. But you will need to input a number to do any testing. It is attached.
  14. N

    Question Possible Corrupted Database

    Yes, the table has a few combo boxes, but the odd part is that the other combo boxes are populating fine, it's just the one that is not doing it. As for the query, I could not find what you were looking for specifically. The report is based on the query: Tape Query Which has a SQL view...
  15. N

    Question Possible Corrupted Database

    Hopefully this is the last question for a while. I have a query that I print out into a report and the query is based on a form that has a combo box in it. When I run the query, the combo box populates with the correct information that was input into the table, but as soon as I run the report...
Top Bottom