Hi i'm pulling a record set from tables and looping thru to display values.
some values have NULL values. I was wondering it could be done for each object in the rs by using a script, possibly something like:
Thanks!
some values have NULL values. I was wondering it could be done for each object in the rs by using a script, possibly something like:
Code:
Dim thing
For each thing in objR2
if isNull(obj2(thing)) then
objR2(thing) = ""
end if
'then start the loop
Do Until objR2.EOF
Thanks!