why i cannot use :
rep8_bc = IIf(IsNull(rs(8)), "null", Replace(rs(8), "'", "''"))
it say " Invalid use of Null"
but if i remove replace, it's work. And then get error because record have an apostrophe character, so i change the code into this :
rep8_bc = "null"
If IsNull(rs(8)) = False Then rep8_bc = Replace(rs(8), "'", "''")
or this :
If IsNull(rs(8)) = False Then
rep8_bc = Replace(rs(8), "'", "''")
else
rep8_bc = "null"
end if