All, using 2010; I have a data entry form. Recordsource is the table. I need the form to open ready for a new record but also only records for the current year. i.e. 2014. Right now I have this code when the form loads:
Please helpCode:Private Sub Form_Load() Me.filter= [yearadded]=2014 DoCmd.GoToRecord , , acNewRec End Sub