E
Eric Kelso
I'm trying to use a column reference that contains a user-defined calculation
as a text string in an update query. For example, if I have a table like the
one below with 4 columns (A, B and D are double; C is text) and 1 record:
A: 2
B: 3
C: [A]+
D: Null
I would like to write an update query that writes the resulting value of C's
equation into D (e.g. 5). The update query SQL statement I've written
("UPDATE XYZ SET XYZ.D = [C]") keeps giving me a type conversion failure.
Does anyone know how to do this or can at least point me in the right
direction?
as a text string in an update query. For example, if I have a table like the
one below with 4 columns (A, B and D are double; C is text) and 1 record:
A: 2
B: 3
C: [A]+
D: Null
I would like to write an update query that writes the resulting value of C's
equation into D (e.g. 5). The update query SQL statement I've written
("UPDATE XYZ SET XYZ.D = [C]") keeps giving me a type conversion failure.
Does anyone know how to do this or can at least point me in the right
direction?