I have spent he last 2 days looking for this info in a past thread but couldn't find anything. I have a recordset that has a field that has nothing it in. I have tried the following to verify but it is not working. Please advise.
Thank you in adavance,
Allan
Code:
if rsMemInfo("picks") = " " then
Response.Write("NO selections made.<BR>")
else
Response.Write("USER made selection.<BR>")
end if
also tried:
if rsMemInfo("picks") = "" then
if IsNull(rsMemInfo("picks")) then
if IsEmpty(rsMemInfo("picks")) then
none work to capture when the database (Access) holds nothing in that field.
Allan