> I have a form where the "oTDLdaTE" field has to be entered and would
> like the quarter it belongs to entered in the "quarter" field
[quoted text clipped - 8 lines]
> Please keep it simple, I really want to learn this stuff.
> Thanks.
Real easy. Eliminate the quarter field entirely from your table. You don't
need it and it would be a redundancy to keep it. All you have to do to
*display* the quarter anywhere you need it is to apply an appropriate format to
your date field.
For example, on your form you would have two controls bound to your date field.
In one of them you would set the format property to "q" (without the quotes).
As soon as you enter a date the quarter will automatically appear in the other
control.

Signature
Rick Brandt, Microsoft Access MVP
Email (as appropriate) to...
RBrandt at Hunter dot com
Nick - 06 May 2007 17:15 GMT
I like what you are saying but am having difficulty understanding it could
you give me an example. Thanks!
> > I have a form where the "oTDLdaTE" field has to be entered and would
> > like the quarter it belongs to entered in the "quarter" field
[quoted text clipped - 18 lines]
> As soon as you enter a date the quarter will automatically appear in the other
> control.
Rick Brandt - 06 May 2007 17:32 GMT
> I like what you are saying but am having difficulty understanding it
> could you give me an example. Thanks!
Pretty sure I did :-)
Make another TextBox bound to your date field. You can even just copy the one
you have if you like. On the format tab of the property sheet for the new
TextBox enter a single letter Q in the format property. That will cause the
TextBox to display the quarter that corresponds to the date instead of the full
date.

Signature
Rick Brandt, Microsoft Access MVP
Email (as appropriate) to...
RBrandt at Hunter dot com
Nick - 07 May 2007 01:19 GMT
Thank You! I appreceate your patience. I followed your instructions and it
works great.
> > I like what you are saying but am having difficulty understanding it
> > could you give me an example. Thanks!
[quoted text clipped - 6 lines]
> TextBox to display the quarter that corresponds to the date instead of the full
> date.