Search results

  1. D

    Question Access Yes / no trigger

    Hi This is very much a work in progress report to track production. I am trying to get the basics correct before refining the database. If you look into forms, basically we have 4 areas Saw 1, Saw 2, Saw 3 and Misc. I am trying to get the date to fill in when the tick box is changed, but it...
  2. D

    Question Access Yes / no trigger

    Hi sorry I may be doing something very wrong here, still getting same result as previous. Private Sub chkCut_AfterUpdate() If Me.chkCut = Yes Then Me.cutdate = Date Else Me.cutdate = Null End If End Sub
  3. D

    Question Access Yes / no trigger

    Hi Thanks for that I must be doing something wrong though, here is what I am putting in the after update section. However; when I tick the box the date doesn't appear, but does when I untick the record. Any ideas? Private Sub Cut_AfterUpdate() If Me.Cut = Yes Then Me.cutdate = Date Else...
  4. D

    Question Access Yes / no trigger

    :confused: Hi new to this don't know if this is in the correct section. I have set up a database and have a couple of yes/no fields. Is there anyway I can get a field which will automatically put the date in when the yes/no box is ticked? I have been looking at this for ages now without...
Back
Top Bottom