Search results

  1. N

    Many to Many implementation question for use in a form

    Common solution is to insert a junction table to resolve the N:M problem. N:1 and 1:M as a result you have an extra layer to add information to that is pertinent to the particular relationship as well
  2. N

    Solved Excel Table Relationships

    standard problem, my pleasure to help you. Can you mark the thread solved?
  3. N

    Solved Excel Table Relationships

    Most likely your excel sheet is showing blaks because the rows below your table has been "touched" dispite it showing 56 entries with values in the sheet, it has "used" 60 or more rows... Try deleting the surpluss rows in the excel sheet...
  4. N

    Import txt file

    What have you tried, what are your troubles
  5. N

    How to: Button and Macro to Run Module

    any excel sheet is sortable no need for it to be a "table" creating a form shouldnt be to hard to stick this code behind, how far have you got and what problems are you experiencing?
  6. N

    Help to group by categories

    having umpteen tables to store this data is a sure sign of a faulty design, suggest you fix your design. Going with this. Store your union query as qryUnion Select union all select etc. Store this as qryTeller Select ID, SEGMENT, COUNT(*) as AantalKeer From qryUnion group by ID, SEGMENT...
  7. N

    Parameter Query problem

    No its not simple to do, not crazy difficult neither if you know how. What you want is a search form and/or a cascading combobox... have a look around and see how far you get with that come back with any and all questions you have.
  8. N

    Single Index or Multiple Column Index

    no difference that you will notice. thus go for the best solution and split the columns.
  9. N

    How Best to Structure Imports and Queries

    docmd.transfertext is your friend both for import and export.
  10. N

    Automatically update date field everyday

    Thanks for resurecting a thread over 4 years old, anyways as the thread suggests, current date should not be stored at all. To compute the days you can run a simple query and calculate: DaysSinceRegistration: Date() - RegDate Or put a simular calculation in a form.
  11. N

    Passing Invoice number

    There is never a need to store information twice, unless you go into complex things like performance and/or datawarehouse issues.
  12. N

    Multiple Date Fields based on Criteria on the same Report Row

    something like: IIF(equipment1 <Date()+60, equipment1, null) as Forktruk Or if you are using the designer: Forktruk: IIF(equipment1 <Date()+60, equipment1, null) ??
  13. N

    Autofill Form from Same Table

    Research a subject called "Normalization" a database works a lot different from a spreadsheet. Try to forget anything you think you know about excel and stop applying it to a database. Come back with any questions.
  14. N

    Solved Open folder form

    Spaces in filenames.... is it compiling the path properly? Otherwize try adding "" around the entire path.
  15. N

    Solved Combobox Options

    Private Sub Cbodeladdress_AfterUpdate() On Error GoTo Cbodeladdress_AfterUpdate_Error If me.Cbodeladdress = "Yard" Then Me.Txtaddress = Me.Cbodeladdress.Column(1) Me.Txttown = Me.Cbodeladdress.Column(2) Me.Txtcounty = Me.Cbodeladdress.Column(3)...
  16. N

    Multiple Date Fields based on Criteria on the same Report Row

    what is it based on ?
  17. N

    Multiple Date Fields based on Criteria on the same Report Row

    Please do consider these words as well as those from @Pat Hartman ...
  18. N

    Multiple Date Fields based on Criteria on the same Report Row

    My bad, to much used to using Oracle or SQL Server, IIF(equipment1 <Date()+60, equipment1, null) as Equipment1 Or if you are using the designer: Equipment1: IIF(equipment1 <Date()+60, equipment1, null)
  19. N

    Passing Invoice number

    There is a difference between what you want and what you should do, going against my advice and that of @Pat Hartman, this will come back to bite your rear end. You want to solve this in a query not by storing it in your table.
  20. N

    Export query results by segments

    what version of office are you using? Docmd.transerspreadsheet or Docmd.transfertext (into a .csv file) will export your table just fine I think
Back
Top Bottom