Recent content by kzutter

  1. K

    Append to table with autonumber

    In your append query, select all of the (desired) fields, except the Autonumber field. The receiving table will add values to its Autonumber field.
  2. K

    Displaying the Date Quarter in a Query

    Public Function Quarter(TheDate As Date) As Variant 'Enter with a date 'Returns the Quarter that date is in 'where July 1 is start of fiscal year 'Change the Choice items for different fiscal year start quarters Quarter = Choose(DatePart("q", TheDate), 3, 4, 1, 2) End Function
Top Bottom