<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Date a specific record in Microsoft Access</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/date-a-specific-record-in-microsoft-access/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers/date-a-specific-record-in-microsoft-access/</link>
	<description></description>
	<lastBuildDate>Tue, 18 Jun 2013 04:24:31 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: randym</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/date-a-specific-record-in-microsoft-access/#comment-62080</link>
		<dc:creator>randym</dc:creator>
		<pubDate>Thu, 09 Apr 2009 13:49:20 +0000</pubDate>
		<guid isPermaLink="false">#comment-62080</guid>
		<description><![CDATA[Datefield is just an example.  Unless your control on the form is called datefield, you need to replace  &quot;datefield&quot; with the real name of your control on the form.  This has to be a control on the form and bound to the table.  To avoid confusion, I suggest that the name of the control on the form be the same as the column in the table that it is bound to.]]></description>
		<content:encoded><![CDATA[<p>Datefield is just an example.  Unless your control on the form is called datefield, you need to replace  &#8220;datefield&#8221; with the real name of your control on the form.  This has to be a control on the form and bound to the table.  To avoid confusion, I suggest that the name of the control on the form be the same as the column in the table that it is bound to.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sfd410</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/date-a-specific-record-in-microsoft-access/#comment-62031</link>
		<dc:creator>sfd410</dc:creator>
		<pubDate>Wed, 08 Apr 2009 14:50:32 +0000</pubDate>
		<guid isPermaLink="false">#comment-62031</guid>
		<description><![CDATA[Ok....Sorry that I&#039;ve taken so long to write back regarding this lastest advice.

I now get an error message (after I make changes to the record and try to move to the next record) that says:

Microsoft Office Access can&#039;t find the macro &#039;ME!datefield=NOW()&#039;

The macro (or it&#039;s macro group) doesn&#039;t exist, or the macro is new and hasn&#039;t been saved.
Note that when you enter the macrogroupname.macroname syntax in an argument, you must specify the name the macro&#039;s macro group was last saved under.


Any ideas on what to do next?]]></description>
		<content:encoded><![CDATA[<p>Ok&#8230;.Sorry that I&#8217;ve taken so long to write back regarding this lastest advice.</p>
<p>I now get an error message (after I make changes to the record and try to move to the next record) that says:</p>
<p>Microsoft Office Access can&#8217;t find the macro &#8216;ME!datefield=NOW()&#8217;</p>
<p>The macro (or it&#8217;s macro group) doesn&#8217;t exist, or the macro is new and hasn&#8217;t been saved.<br />
Note that when you enter the macrogroupname.macroname syntax in an argument, you must specify the name the macro&#8217;s macro group was last saved under.</p>
<p>Any ideas on what to do next?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: randym</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/date-a-specific-record-in-microsoft-access/#comment-61067</link>
		<dc:creator>randym</dc:creator>
		<pubDate>Thu, 19 Mar 2009 19:17:29 +0000</pubDate>
		<guid isPermaLink="false">#comment-61067</guid>
		<description><![CDATA[You need the control source of the donate field to that of the donate field on the table.  The control source of the date field needs to be set to that of the date field of the table.  Then make an After update event on the donate field that simple does: me!datefield = NOW().  

P.S.  the fomat set in the form suggested by DPaxton for the date does not control what actually is stored in the date field in the table.  So if you do not want time in the date, then you must do: me!datefield = cdate(format(now(),&quot;mm/dd/yy&quot;)).  This will strip the time off so that you can filter or query on just date later.]]></description>
		<content:encoded><![CDATA[<p>You need the control source of the donate field to that of the donate field on the table.  The control source of the date field needs to be set to that of the date field of the table.  Then make an After update event on the donate field that simple does: me!datefield = NOW().  </p>
<p>P.S.  the fomat set in the form suggested by DPaxton for the date does not control what actually is stored in the date field in the table.  So if you do not want time in the date, then you must do: me!datefield = cdate(format(now(),&#8221;mm/dd/yy&#8221;)).  This will strip the time off so that you can filter or query on just date later.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sfd410</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/date-a-specific-record-in-microsoft-access/#comment-61057</link>
		<dc:creator>sfd410</dc:creator>
		<pubDate>Thu, 19 Mar 2009 17:09:47 +0000</pubDate>
		<guid isPermaLink="false">#comment-61057</guid>
		<description><![CDATA[Ok. I’ve done that but I still get no date to appear when I make changes to the record (i.e. add an amount to the &quot;donate&quot; field.

Do I need to change the “Control Source” from my &quot;Date&quot; field to my &quot;Donated&quot; field?  I&#039;ve tried that, and when I do enter an amount in the &quot;Donate&quot; field, the date that appears in the corresponding box is not the current date, and changes when the dollar amount changes.  Should the &quot;Control Source&quot; for my &quot;Date&quot; field be changed back or stay on the &quot;Donated&quot; option?

I&#039;m really at wits end with this program.]]></description>
		<content:encoded><![CDATA[<p>Ok. I’ve done that but I still get no date to appear when I make changes to the record (i.e. add an amount to the &#8220;donate&#8221; field.</p>
<p>Do I need to change the “Control Source” from my &#8220;Date&#8221; field to my &#8220;Donated&#8221; field?  I&#8217;ve tried that, and when I do enter an amount in the &#8220;Donate&#8221; field, the date that appears in the corresponding box is not the current date, and changes when the dollar amount changes.  Should the &#8220;Control Source&#8221; for my &#8220;Date&#8221; field be changed back or stay on the &#8220;Donated&#8221; option?</p>
<p>I&#8217;m really at wits end with this program.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dpaxton</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/date-a-specific-record-in-microsoft-access/#comment-60988</link>
		<dc:creator>dpaxton</dc:creator>
		<pubDate>Wed, 18 Mar 2009 16:19:11 +0000</pubDate>
		<guid isPermaLink="false">#comment-60988</guid>
		<description><![CDATA[In the Properties for the date field what &quot;Format&quot; is specified. If you want just the date and not date &amp; time is should be &quot;Short Date&quot;.]]></description>
		<content:encoded><![CDATA[<p>In the Properties for the date field what &#8220;Format&#8221; is specified. If you want just the date and not date &amp; time is should be &#8220;Short Date&#8221;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sfd410</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/date-a-specific-record-in-microsoft-access/#comment-60933</link>
		<dc:creator>sfd410</dc:creator>
		<pubDate>Tue, 17 Mar 2009 16:02:37 +0000</pubDate>
		<guid isPermaLink="false">#comment-60933</guid>
		<description><![CDATA[Ok.  I&#039;ve done that but to no avail.  I must be doing something wrong.

I opened the form in design view, went to the &quot;donate&quot; box, chose &quot;Properties&quot;, and entered the required information under &quot;Event&quot;, &quot;On Change&quot;.

In order for the datafield to recognize that I entered a donated value in another field, I had to go to &quot;Properties&quot;, &quot;Data&quot;, and next to &quot;Control Source&quot;, I selected &quot;Donated&quot; which is the field where I enter a donation for a specific record.

In doing that, I do get a date in the Date Field, but it is incorrect and seems to vary by the amount shown in the &quot;Donated&quot; field when I enter an arbitrary $ amount.  What am I doing wrong?]]></description>
		<content:encoded><![CDATA[<p>Ok.  I&#8217;ve done that but to no avail.  I must be doing something wrong.</p>
<p>I opened the form in design view, went to the &#8220;donate&#8221; box, chose &#8220;Properties&#8221;, and entered the required information under &#8220;Event&#8221;, &#8220;On Change&#8221;.</p>
<p>In order for the datafield to recognize that I entered a donated value in another field, I had to go to &#8220;Properties&#8221;, &#8220;Data&#8221;, and next to &#8220;Control Source&#8221;, I selected &#8220;Donated&#8221; which is the field where I enter a donation for a specific record.</p>
<p>In doing that, I do get a date in the Date Field, but it is incorrect and seems to vary by the amount shown in the &#8220;Donated&#8221; field when I enter an arbitrary $ amount.  What am I doing wrong?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dpaxton</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/date-a-specific-record-in-microsoft-access/#comment-60872</link>
		<dc:creator>dpaxton</dc:creator>
		<pubDate>Mon, 16 Mar 2009 17:25:12 +0000</pubDate>
		<guid isPermaLink="false">#comment-60872</guid>
		<description><![CDATA[In form design use a event for the date field to be updated. Use either the &quot;on exit: or &quot;on change&quot; event. This is where the code would be placed.]]></description>
		<content:encoded><![CDATA[<p>In form design use a event for the date field to be updated. Use either the &#8220;on exit: or &#8220;on change&#8221; event. This is where the code would be placed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sbelectric</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/date-a-specific-record-in-microsoft-access/#comment-60743</link>
		<dc:creator>sbelectric</dc:creator>
		<pubDate>Thu, 12 Mar 2009 03:13:11 +0000</pubDate>
		<guid isPermaLink="false">#comment-60743</guid>
		<description><![CDATA[All good suggestions already been made.  The only comments I may add is that – you may want to have the flexibility of inputting the date.  Sometimes you may not be able to enter the date the donation was made (the system may be unavailable or you may decide to batch a week’s worth of donation &amp; then enter at one setting).   My recommendation is to add a new column in the Table – DtDonationMade.  In the Table design mode set Data Type – Date/Time; Format – Short Date; Default -  Now(); Required – Yes;
Access 2007 provides Date Picker option.  This is a handy option to display the monthly calendar where you can click on the desired date. 
Hope this makes sense  &amp; let us know via this forum how you finalized the project.  Good luck.]]></description>
		<content:encoded><![CDATA[<p>All good suggestions already been made.  The only comments I may add is that – you may want to have the flexibility of inputting the date.  Sometimes you may not be able to enter the date the donation was made (the system may be unavailable or you may decide to batch a week’s worth of donation &amp; then enter at one setting).   My recommendation is to add a new column in the Table – DtDonationMade.  In the Table design mode set Data Type – Date/Time; Format – Short Date; Default &#8211;  Now(); Required – Yes;<br />
Access 2007 provides Date Picker option.  This is a handy option to display the monthly calendar where you can click on the desired date.<br />
Hope this makes sense  &amp; let us know via this forum how you finalized the project.  Good luck.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dpaxton</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/date-a-specific-record-in-microsoft-access/#comment-60734</link>
		<dc:creator>dpaxton</dc:creator>
		<pubDate>Wed, 11 Mar 2009 19:10:48 +0000</pubDate>
		<guid isPermaLink="false">#comment-60734</guid>
		<description><![CDATA[How do you equate the receipt with the database record? One way would be using a form to update the record. Use an event for the address field (use the on exit or change event). In the code enter 
&quot;ME!dateField = Now&quot;. This will put the date in the date field each time you exit the address field on a record.]]></description>
		<content:encoded><![CDATA[<p>How do you equate the receipt with the database record? One way would be using a form to update the record. Use an event for the address field (use the on exit or change event). In the code enter<br />
&#8220;ME!dateField = Now&#8221;. This will put the date in the date field each time you exit the address field on a record.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dwaltr</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/date-a-specific-record-in-microsoft-access/#comment-60723</link>
		<dc:creator>dwaltr</dc:creator>
		<pubDate>Wed, 11 Mar 2009 14:51:25 +0000</pubDate>
		<guid isPermaLink="false">#comment-60723</guid>
		<description><![CDATA[You are looking for a database trigger which Access doesn&#039;t support.  Are you using a form to enter the donate value?  If so, you can add an before update event that would update a field tied to your date column.  If you want, you can set the date field property Visible = False so that it doesn&#039;t show on the form.]]></description>
		<content:encoded><![CDATA[<p>You are looking for a database trigger which Access doesn&#8217;t support.  Are you using a form to enter the donate value?  If so, you can add an before update event that would update a field tied to your date column.  If you want, you can set the date field property Visible = False so that it doesn&#8217;t show on the form.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached
Database Caching 3/10 queries in 0.039 seconds using memcached
Object Caching 393/399 objects using memcached

Served from: itknowledgeexchange.techtarget.com @ 2013-06-18 04:40:58 -->