Search results

  1. H

    Dlast function "stops working"

    Hello, I have faced some weird challenges with the Dlast function I am using in a form. Private Sub txtHonaID_Exit(Cancel As Integer) Dim BurNr As Integer BurNr = Nz(DLast("BurNr", "tblParn2010") + 1, 1) Me.cboBurNr = BurNr End If End Sub This is basically the event from the form. So what...
  2. H

    Query: How many times does a value exist?

    Hello, I have a calculation issue that I have not figured out how to do. Basically: "In how many records does a specific value appear in another table"? Here is an example how I would use it: Table: tblPersons Fields: Name (Primary key), BirthDate, WorkerID, John, 20.02.1950, 12345 Fred...
Back
Top Bottom