I have this code
but rather than
can I just do
to place a null value into that field? It is a nullable field, so I think it should work.
wb
Code:
if IsNull(tempFrmInstr) or IsEmpty(tempFrmInstr) or (tempFrmInstr = "") then
tempFrmInstr = ""
but rather than
Code:
tempFrmInstr = ""
can I just do
Code:
tempFrmInstr = NULL
to place a null value into that field? It is a nullable field, so I think it should work.
wb