I guess I was not very clear as to what I was needing. Sorry!
I have a field in my table called "AllExpenses2006.Group"
Every record in my Finance database that is for something purchased by John
that has a blank "AllExpenses2006.Group" field, I want to be globally place
"DO" in the field, otherwise I have to do 762 records by hand...and that just
for this person, I need to do this for each of our people.
I made the following query to show all records where John Young purchased
something where the "AllExpenses2006.Group" field is blank....we place the
name in the item field (why, I don't know, I inherited this stupid db).
SELECT AllExpenses2006.Item, AllExpenses2006.Group
FROM AllExpenses2006
WHERE (((AllExpenses2006.Item) Like "*Young*") AND ((AllExpenses2006.Group)
Is Null));
Now I need to know how to globally fill in the "AllExpenses2006.Group" field
in query.