Recent content by XPS35

  1. XPS35

    Updating MakeTable Queries for a new version of the database

    The best method is not to duplicate your database. One database for all years is the best. Year (date) should be a field in your tables and should not be in the name of a database or a table.
  2. XPS35

    Requery Subform

    I guess it starts with me.parent..........
  3. XPS35

    error in procedure

    As said in post #3 there is no use in looping through all the records. The real action (print the report) is outside the loop. This will do: Public Sub KnopBriefAfdruk_Click() DoCmd.OpenReport "ledenbriefRap" End Sub
  4. XPS35

    Even voorstellen

    Welkom. Zoals je merkt, is de voertaal hier Engels. Maar daarvoor is Google Translate je beste vriend. Welcome. As you can see, the main language here is English. But for that, Google Translate is your best friend.
  5. XPS35

    Dim a Field

    Long does not have decimals. Use Dim XXX as Single.
  6. XPS35

    Solved UPDATE QUERY

    Is the number always 7 positions?
  7. XPS35

    Why my query is not updatable, it seems it is lock.. Pls i need help.

    This one is updateable....
  8. XPS35

    Question on Date in a tble

    Use a query to select the records with the current date. Something like SELECT * FROM TOC WHERE TocDate = Date()
  9. XPS35

    Copy Values from one record to the next on

    Sorry, I didn't read your question completely. Nevertheless, I agree with the others that it is not necessary to record the previous value. After all, it is in the previous record and therefore you do not have to record it again. Make sure you have a field in your table that allows you to...
  10. XPS35

    Copy Values from one record to the next on

    What's the point of having a table with duplicate records? Please tell us more about the background of this question so we can better assist you.
  11. XPS35

    Criteria for Query Question

    It is a bad idea to store that in your table. You need to run the query every day. Make a query with a calculated field and you can always show the right value at the current date
  12. XPS35

    Solved Remove text Prefix from a number

    Eberhards solution (MID) will do.
  13. XPS35

    Solved Remove text Prefix from a number

    That depends on whether the prefix is always the same number of positions long. And if that is not the case, then it always ends with a /?
  14. XPS35

    Solved show data from previous year

    Or WHERE YEAR(YourDateField) = YEAR(Date()) - 1
  15. XPS35

    Invalid Query Results

    Every four of the records in table 1 that has matching records in table 2 has two matching records there. Every combination is shown. Add DISTINCT to your query to eliminate duplicates: SELECT DISTINCT Table1.Payer, Table1.ClientName,...............
Top Bottom