jguscs,
When this gets parsed it thinks that "Test" is the name of your
table.
UPDATE Test Table SET Test Table.[Client Name] = 'Test Name'
How about?
UPDATE [Test Table] SET Test Table.[Client Name] = 'Test Name'
But, you really don't have to store this in ALL rows of
your table (Pat is right!) and try to avoid spaces and
special characters in your names. They will cause you
problems in the long run.
Wayne
When this gets parsed it thinks that "Test" is the name of your
table.
UPDATE Test Table SET Test Table.[Client Name] = 'Test Name'
How about?
UPDATE [Test Table] SET Test Table.[Client Name] = 'Test Name'
But, you really don't have to store this in ALL rows of
your table (Pat is right!) and try to avoid spaces and
special characters in your names. They will cause you
problems in the long run.
Wayne