How do I update the value of one row with the value of a different row? i want to build an expression
For example: I have 3 columns. If Column 1=C and C is Null, then I want the values for C in Column 2 to = 10000 (the value from Column 2 for A) and the values for C in Column 3 to = 22000 9the value from Column 3 for B)
Column1 Column2 Column 3
A 10000 200000
B 12000 220000
C
D 16000 300000
EXPECTED RESULT:
Column1 Column2 Column 3
A 10000 200000
B 12000 220000
[strong]C 10000 220000[/strong]
D 16000 300000
Software/Hardware used:
Access 2003
ASKED:
October 11, 2010 6:19 PM
UPDATED:
October 12, 2010 8:48 PM
OOPS IF BOTH ARE NULL THAT WOULD BE
But not sure if your needs are both always null or sometimes yes sometime no.