Alteration to BeforeUpdate

B

Bob

-- Private Sub Combo329_BeforeUpdate(Cancel As Integer)
Me.tbSpellingDate = Format(Date, "dd-mmm-yy")
End Sub

Can this BeforeUpdate be changed , as the only two options it does have are
Yes;N/A

[Yes] enters date

[N/A] enters Blank



TIA Bob
 
J

JK

Bob,

Use the AfterUpdate event

Me.SpellingDate = IIf(Me.SpellingDate="Yes", something, something else)

Regards
Jacob
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top