Recent content by shaggy

  1. S

    File Creation Date on Linked or Imported Text File

    I have multiple text files I link with an import specification. Is there a way to include the file creation date in the data if I link or import these text files. I currently import this data using sql in vba. The data from the linked text files is imported into another temporary table for...
  2. S

    Retain Sequence in Table from Original Imported Text File

    There's no way to determine the original order after it has been scrambled. I hadn't thought of importing it 1st into excel. I'll try that next week. Thanks for the help
  3. S

    Retain Sequence in Table from Original Imported Text File

    How do I add sequence numbers to the text file? VBA? The text file is the output from an application. The format of the file is fixed without a programming change to the application.
  4. S

    Retain Sequence in Table from Original Imported Text File

    I use a macro to import a text file into a table. Each line of the text file contains 1 record. The type of record is identified by the 1st 3 characters (MR#). Multiple records contain related data but the only way to define the relationship is by the sequence of records in the original text...
  5. S

    file already in use message when trying to compact db

    I have multiple MDB files located on one computer which are used on that computer and others on our network. Until recently I was able to compact any of the MDBs as long as it was only open on one computer. There seems to be a problem with the file locking recently. If I close all open...
  6. S

    Help with Variable

    I can't think of any way to do this in a query. I think I need to do this in code so I can store a variable from the previous record. I want to create Field2. Field2 in the first record will always be 1. In each successive record if Field1 is "57" I want to use the same Fields2 value in the...
  7. S

    Concatentate a Single Field From Multiple Records

    Thanks I don't know if I'll be able to try this unil after Thanksgiving, but I really appreciate the help.
  8. S

    Concatentate a Single Field From Multiple Records

    I have a table of every reading of every electric meter. This history goes back a couple of years. Field1 = date Field2 = Meter# Field3 = Single digit code identifying method of reading The same meter is read multiple times in a year. The number of readings in the database is 1 or more (no...
  9. S

    Field Name Reference with Variable as Part of Name

    I have an application that creates a backup file of data in an Oracle db as a comma delimited text file. I’m basically trying to reverse the process and take the comma delimited file and turn it into multiple tables in Access with the same field names and data contained in the Oracle DB. I’ve...
  10. S

    Field Name Reference with Variable as Part of Name

    Can a function be written to create a field name reference using a variable(s) as part of the name? Example: A=1 B=2 Adding A+B should give the numeric at the end of the field name. I would like to refer to [Field3]. Something like [Field(A+B)].
  11. S

    Can't Design or Run Reports

    I think I've narrowed it down to a conflict between access and the printer driver. I remember having the same problem a couple of years ago when updating from NT to Win2K with Office 2000. We were never able to resolve the problem but deleted the networked printer that caused it and used...
  12. S

    Can't Design or Run Reports

    Has anyone heard of this before? I have a new XP computer with Office 2003. I can't seem to get reports in Access to work at all. I click on Reports then either design or wizard and nothing happens. I copied an mdb from another computer where everything works and can't run or open reports...
  13. S

    Default Values in Form from Table

    There is only 1 user. The form is normally only opened twice a day. Once when new data is imported form an outside application, and then again when data is exported. Reports are run on both import and export data using the defaults. Occasionally the defaults will have to be overridden to...
  14. S

    Default Values in Form from Table

    I have a form the runs reports based on a 2 values entered manually into text boxes. I would like to set default values for these boxes, but the values change twice daily. I've written a make table query that creates a table with the values I would like (only 1 record). I've inserted a macro...
  15. S

    Unmatch Query Question

    Unmatched Query Thanks Jon, that seems to work in this situation. I have another question though. What if the value of the linked field matches? It seems that the query is selecting records based on Field1 mismatching and then testing all the other fields for mismatches. Is this right...
Back
Top Bottom