I am new to access and am working with an existing form that has 2 fields one
for a birthday and another for a spouses birthday. The problem is that the
date entered in one will show up in both no matter which field you enter a
date into it chages the date in both fields.
The first thing to realize is that Forms don't have fields, and that Forms
don't store data. A Form is *just a window* - a tool to manage data which is
stored in a Table.
A control (such as the textboxes that you have on the form for birthdates) has
a Control Source property, which specifies which field in the Table that
control displays. It sounds like you have *one* Birthdate field in your table,
with two textboxes (one labeled for the person, the other labeled for the
spouse), but they're both bound to the same field. It's like looking through
two different windows at something - it's the same date, no matter which
window you look through!
If you open the Form in design view, you can look at the Control Source
property of each of these textboxes. What's that property? You can also look
at the Form's properties, and find the Record Source property - that should be
the table or perhaps the query upon which the form is based (that's where the
data is actually stored). Click the ... icon by that property, and you should
get a query design window (maybe with a prompt); select View... SQL from the
menu, and copy and paste the text that you'll see to a message here.
John W. Vinson [MVP]