Search results

  1. B

    Independent Columns?

    Thanks for your help but after a Holiday I'm no longer on the job. My apologies for this late reply.
  2. B

    Independent Columns?

    Thanx, but how do i use OLE to achieve this ? Remain both fields linked to Customer so that a number of rows is inserted equal to the maximum number of records of one of those two tables? Example: Customer1 has 3 conversations & 4 invoices Customer2 has 3 conversations & 2 invoices etc It should...
  3. B

    Independent Columns?

    i've three tables. 1. Customer (concerns customer data) 2. Conversations (concerns conversations with customer) 3. Invoices (concerns outstanding invoices of customer) Last two tables got the key of table Customer but have an arbitrary lenght to one another. I would like to export this data to...
  4. B

    Numeric Overflow

    Thanks for your reply, but i already have. All topics with "numeric overflow" remain unanswered. There is even somenone with exactly the same problem - but no solution.
  5. B

    query from a form

    If you use the wizard to create a form you you can choose multiple ("more than one") tables as data source (second menu). Then you can choose how you "want to view your data". Try it out!
  6. B

    Numeric Overflow

    I'm trying to append records from a linked .txt table into an Acces table. The .txt file is formatted as a report so columns contain different datatypes (headers & columnnames are text while the data can be numbers). Creating the linked table I have formatted some fields as numeric so the...
  7. B

    Edit a Table by VBA

    Man this is brilliant! Please accept my humblest gratitude. :-)
  8. B

    Report skipping some groups

    Are there Boards with the same names? Try to sort on the key values as boardID
  9. B

    Edit a Table by VBA

    Sounds genious! Thanks! Unfortunately I got an error: on Dim dbs as Database ("Compile error: User-defined Type not Defined"). It seems "Database is not a valid type? I also have antother question. Should the code be put in a module or can it also be put behind a form? Thanks again.
  10. B

    Populating Second Form Based on First

    And what does not work after you created a (linked)form based on the same table and a button to open it (and search for specific records)?
  11. B

    Report skipping some groups

    How is sorted and grouped?
  12. B

    Calculation problem in report

    I do not quite understand your SQL or the results (not really straight) but a normal way of solving this is to add another group level: Gender for male/female
  13. B

    Union Query Help

    So what is the problem? That you cannot create a union-query or fields4,5,6 or?
  14. B

    Unusual

    Unfortunately my first table above is not straight. But in my database it is. So Please consider it as a beautiful table.
  15. B

    Unusual

    Thanks for your replies. I'm sorry. Probably i have not been specific enough. I have created an linked table. The text file is space-delimited and causes no problems to be "imported" (=through an query appended in an existing table) as a perfect duplicate with valid records. The fields are...
  16. B

    Edit a Table by VBA

    I have made a linked table to a text file (which is continuously updated). Unfortunately the file is formatted as report. This means that the first values are omitted if they are double. For a proper processing I must put those values "back". So far I know there is no solution by SQL since if...
  17. B

    Calculating Fields within a Table - HEEELLPP!! I am new to this!

    As always there are multiple solutions. I stich with my former conclusion that using a table is none. Stille I do not understand WHY you prefer a table look on screen. You should consider this! Working with a single subform is a simple solution that is userfriendly. You can use the record...
  18. B

    Calculating Fields within a Table - HEEELLPP!! I am new to this!

    You can create a subform within your mainform to get alle the records as you want. "The wizard will lead you through the process". Furthermore creating a field in a table based on other fields within that table is not a proper use of it. It is better to create a query that calculates the...
  19. B

    Unusual

    I have a report imported from a text format into Access. The problem is that double values are left blank. The first field is numbered and each number concerns one item. It is necessary to add numbers to the blank lines in my Access table for processing the data properly. How could this be...
  20. B

    Show Last Record on Subform

    Thank you for your answer but I get the same error: Run-time error 2001: You canceled the previous operation. When clicked on Debug the line Me.Bookmark = rs.Bookmark is highlighted. That line is used to find a record, but to show the last record on my subform is activated "On Current". The two...
Top Bottom