MelissaBerrett
MIS
I need to populate a date field based on another field recieving information. Usually when I use check boxes I use the following code
If Me.cmdCensus = -1 Then
Me.cmdDate = Date
Else
If Me.cmdCensus = 0 Then
Me.cmdDate = Null
End If
End If
This won't work on items that are not text boxes - what can I use?
Melissa
If Me.cmdCensus = -1 Then
Me.cmdDate = Date
Else
If Me.cmdCensus = 0 Then
Me.cmdDate = Null
End If
End If
This won't work on items that are not text boxes - what can I use?
Melissa