asp excel

M

magix

I try to use asp to extract excel data. if the item field in excel is empty,
can I use "" to represent empty ?

will this (" ") work ?
rs("Item") = ""

rs.open "SELECT * FROM [Sheet1$]", oConn
do until rs.EOF
if rs("Item") = "" then
emptyfield = true
else
emptyfield = FALSE
end if
rs.movenext
Loop
 
T

ThatsIT.net.au

Without making a connection and testing it, I would think yes.

if not try Trim(rs("Item")) = ""
or even Trim(Cstr(rs("Item"))) = ""

or maybe rs("Item") = null
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,767
Messages
2,569,572
Members
45,045
Latest member
DRCM

Latest Threads

Top