ListLen() return Values
I'm using ListLen function to detect whether a column has a value or not. If the column has a value, the value is going to be a comma delimited value such as a,b,c,d,e,f etc
otherwise it could be just blank (Null or a space) NOT an empty comma delimited.
So when I do the following:
<CFIF LisLen(GetQuery.ColumName) IS .....> here where I'm not sure what to do. Should I say: <CFIF LisLen(GetQuery.ColumName) IS 0 > Or should I say:
<CFIF LisLen(GetQuery.ColumName) IS " " >
I googled and read CF textbook, all mentioned only when ListLen is evaluating a list not an empty value. Please help! Thanks a bunch!
