Search results

  1. XPS35

    Search on part of field

    I have a large table (200,000+ records) of products. I can therefore not use a combo box to select a product. I have created an extra form where the user can select the first 5 positions of the product code via a combo box. Then the user selects a product whose product code starts with the...
  2. XPS35

    Set-up Junction Table with Additional Fields

    It depends on whether a contact can respond to a communication more than once. I can imagine that a contact will respond to your response again. Then the model with three tables falls short.
  3. XPS35

    Solved Theoretical question

    Crossposted here https://www.helpmij.nl/forum/showthread.php/965826-Theoretische-vraag#post6338680
  4. XPS35

    Copy Input Data automatically to the next field

    Use the after update event on Stop_Current: me.Fair_Value = me.Stop_Current
  5. XPS35

    Solved Update telephone numbers

    CJ_London's solution will work in an update query. If there are numbers that do not start with 0, add a condition to query. Like: WHERE Left(Telnr) = "0"
  6. XPS35

    Solved Running Totals

    Running totals are easy to use in reports and froms. Make a form or report with the union query.
  7. XPS35

    Greetings from Belgium (Geert)

    Welkom Geert.
  8. XPS35

    Combo Boxes and Dynamic lookups (NOT Cascading)

    I think the principle remains the same. Instead of a first combo box, you use a text field. If a value is entered there, you adjust the rowsource of the combobox based on that value. As mentioned, it is difficult to offer help without more information. An example database would also help.
  9. XPS35

    Solved VBA copy data from one database to another

    Double crossposted https://www.accessforums.net/showthread.php?t=86715 and https://www.helpmij.nl/forum/showthread.php/965717-VBA-kopieer-gegevens-van-de-ene-database-naar-de-andere
  10. XPS35

    Solved Handling Null Values

    What expression are you using? You have got several suggestions.
  11. XPS35

    Solved Handling Null Values

    IIF is your best friend SELECT Chemical, IIf(IsNull([MeltingPoint]),"N/A",[MeltingPoint]) AS MeltingPointShow FROM tblChemical ORDER BY IIf(IsNull([MeltingPoint]),999999,[MeltingPoint]);
  12. XPS35

    Binding text box to a query, on form bound to a table

    What do you want to accomplish with this? You are entering data into your table, so what do you want with that field?
  13. XPS35

    Solved Calculate previous record in current Record

    FYI crossposted here https://www.accessforums.net/showthread.php?t=86667
  14. XPS35

    How to give a zero value to count if zero

    Does your table Samples_List contains all possible intervals? And are the intervals you are missing not related to any SampleTestedFor record? In that case use LEFT JOIN instead of INNER JOIN.
  15. XPS35

    Combo box dependant Form

    I did not fix anything. I just set enforce referential integrity for every relation to yes. Read carefully.
  16. XPS35

    Combo box dependant Form

    I think some of your relations are wrong. You also need to enable the relation property "enforce referential integrity". That will keep your data clean. It also makes clear which table is on the "1 side" of a 1 to many relation and which on the "many side". I did this for all (but 1) relations...
  17. XPS35

    impossible to get date time values in a query

    Why are the fields short text in the table? I think that might be the problem.
  18. XPS35

    VBA Code for 5 copies from records to another Table

    I totally agree with Galaxiom. You will first need to get your database design in order. The second table should only contain the key from the first table and no other fields from that table. Working with compound fields is also not a good idea if the underlying data is already elsewhere. You...
  19. XPS35

    Solved Sum total 1 column

    Use the DSum function. YourVar = DSum("InitExposure_Gross", "YourTable")
  20. XPS35

    emailing residents from a recordset

    First make sure the recordset contains unique persons only.
Back
Top Bottom