A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Access » Using Forms
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

auto update



 
 
Thread Tools Display Modes
  #1  
Old June 12th, 2004, 09:13 AM
external usenet poster
 
Posts: n/a
Default auto update

does any one know how i can make it so that when a number (15) is inserted into a field in column A, the corresponding field in
column B always enters the date that the certain # was entered into column A.
or a good tutorial will help
im using access 2000 and the generel date/time format
thanks



  #2  
Old June 13th, 2004, 08:07 AM
Reggie
external usenet poster
 
Posts: n/a
Default auto update

Assuming you are using a form to enter the data and that the names of your
controls and fields are what you listed in your post:

Private Sub columnA_AfterUpdate()
If Me.columnA = 15 Then
Me.columnB = Date
End If
End Sub


--
Reggie

----------
wrote in message
link.net...
does any one know how i can make it so that when a number (15) is inserted

into a field in column A, the corresponding field in
column B always enters the date that the certain # was entered into

column A.
or a good tutorial will help
im using access 2000 and the generel date/time format
thanks





 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 07:50 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.