amanzimdwini
02-16-2007, 11:10 PM
I have a table with one record that is sometimes filled and sometimes null. I'd like to fill the table "downwards" along the lines
HAVE WANT
a a
null a
null a
b b
null b
c c
d d
null d
Quasi-program:
FillStr="xx" (default)
loop while not EOF
if rst.string="null" then set rst.string=FillStr
else FillStr=rst.string
loop
Now all I need is the exact syntax to do this. Any help would be GREATLY appreciated!
karl
HAVE WANT
a a
null a
null a
b b
null b
c c
d d
null d
Quasi-program:
FillStr="xx" (default)
loop while not EOF
if rst.string="null" then set rst.string=FillStr
else FillStr=rst.string
loop
Now all I need is the exact syntax to do this. Any help would be GREATLY appreciated!
karl