Search results

  1. J

    Auto Create Linked Tables

    So, I have a problem. I am working with a database that has many relationships but after a set time I want it to split the tables and archive the old data. I have been researching ways to do this because for this case the end user cannot do it as they dont know how. For preview my database is...
  2. J

    Set Default Value in Macro

    Hey everyone, I am not sure how to go about setting the default value of a lookup column within a macro. I want it to set the default value of a field in a separate table when the macro runs. Any guidance is sincerely appreciated thanks. James:)
  3. J

    Macros and Navigation Pane

    This question is gonna sound kinda crazy but is it possible to hide the navigation pane within a macro. (Like the Autoexec macro) the one that starts at the beginning of the database. Before anything else. It can only hids cause it will need to be viewed later just not right away.
  4. J

    Edit Lookup Column

    thanks I got it spelled correctly and all the records updated to reflect the new spelling
  5. J

    Edit Lookup Column

    Hey all I have a spelling error in my lookup column. So I would like to change the spelling and have it automatically correct the spelling on all the records with the misspelled value. I am using Access 2007. Suggestions anybody!!
  6. J

    Help with DLookUp

    here is a link to the sample database. It is simplified for obvious reasons. http://studentweb.stcloudstate.edu/paja0901/testbed.zip.
  7. J

    Help with DLookUp

    I have strict orders not to post it because the information is not public. It is confidential information. So I do not believe posting the DB is something that I can do. Sorry!
  8. J

    Help with DLookUp

    is there a way to use the expression DLookUp on the table itself rather than the form
  9. J

    Help with DLookUp

    it does that is why I am unsure why the code doesnt update the field in the destination table rather than leave it blank.
  10. J

    Help with DLookUp

    just tried it. same result. I was wondering if that is still pointing to the form. is there a way to directly point it to the table.
  11. J

    Help with DLookUp

    The code I have looks like this Private Sub Student_ID_AfterUpdate() Me.Student_ID = DLookup("[Student ID Num]", "[Current Students]", "[Student name] = '" & [Student name] & "'") End Sub However it doesnt update the table itself like I need. Is this what you were refering to or something...
  12. J

    Help with DLookUp

    hey i am just a little confused as to how that would work for me please explain. What is the syntax used.
  13. J

    Help with DLookUp

    Thats all it took. Thanks. I do have one more question. How do I make it lookup the value in the Current Students table and then write the value to the Daily Contact Info table. Right now it is not recording the value just displaying it on the form. Can you tell me what property needs to be...
  14. J

    Help with DLookUp

    K so here is the formatting following the guidelines with the .Text property DLookUp("[Student ID Num]","[Current Students]","[Current Students]![Student name] = '[Student name].Text'") I am not entirely sure what the error was. But at one point it displayed #error! without much explanation...
  15. J

    Help with DLookUp

    I tried to leave out the .Text property and it came up saying error. When I reformatted it, no results came up. Is it possible I still have the formatting wrong. I am working with Access 2007.
  16. J

    Help with DLookUp

    I am trying to work with the DLookUp function and have a similar problem as a previous post http://www.access-programmers.co.uk/forums/showthread.php?p=954468. However my problem is the timing. By using the following code: DLookUp("[Student ID Num]","[Current Students]","[Current...
Back
Top Bottom