This does not involve any criteria, unless you also want to limit which
records are returned.
Create a new query in design view. Add your table, and double click on the *
at the top of the list of fields in the table to add all fields to the query
(or select just the fields you need). Then enter your expression in a blank
field cell. You enter the field name followed by a colon followed by the
expression. You can include field names in the expression, and these must be
enclosed in square brackets if the field name includes spaces or other
special characters.
You don't say what fields X and Y are, or what type of data, or what
expression you would use to get Z, so it's a bit difficult to give you any
further help. As a simple example, if X and Y are numeric and Z is just the
sum of X and Y then you would enter:
Z:[Field X] + [Field Y]
If they are text and you want to string them together separated by a space
then you would put:
Z:[Field X] & " " & [Field Y]
So if X was "Andrew" and Y "Smith" then you would get "Andrew Smith" in Z.
bdehning said:
What you say makes perfect sense but I am slow at building expressions!!!
Can you provide an example of what the calulated field would look like if
I wanted to move dates from Field X and Y into Field Z? My problem is
knowing what criteria to use to do this