T
TA
Hello all,
I have a table with a field name "postyr". I want to
replace some of the value in the table.
How can I using replace statement in VB like this:
replace postyr = "2" with postyr = "2002"
replace postyr = "3" with postyr = "2003"
I tried using this but it replace all the value
with "2003":
With rs!postyr = "2"
rs!postyr = "2002"
End with
With rs!postyr = "3"
rs!postyr = "2003"
End With
Thank inadvance!
TA
I have a table with a field name "postyr". I want to
replace some of the value in the table.
How can I using replace statement in VB like this:
replace postyr = "2" with postyr = "2002"
replace postyr = "3" with postyr = "2003"
I tried using this but it replace all the value
with "2003":
With rs!postyr = "2"
rs!postyr = "2002"
End with
With rs!postyr = "3"
rs!postyr = "2003"
End With
Thank inadvance!
TA