|
-
Feb 19th, 2003, 08:47 PM
#1
Thread Starter
Member
I don't want null in my group...
Hello,
How do you keep null out of a group?
IE - Select fldNumber from tblNumbers group by count(fldNumbers)
the problem is that there are some null values in fldNumbers, and I can't have null returned as a value.
Please help!
-
Feb 20th, 2003, 03:08 AM
#2
Lively Member
Can you set the default value for the field to 0 then filter for values > 0 ?
Alternatively search for values in that field that Is Not Null
JFK
-
Feb 20th, 2003, 03:50 AM
#3
Frenzied Member
VB Code:
Select fldNumber from tblNumbers Where not isnull(fldNumbers) group by count(fldNumbers)
Code:
If Question = Incomplete Then
AnswerNextOne
Else
ReplyIfKnown
End If
cu Swatty
-
Feb 20th, 2003, 08:51 AM
#4
Hyperactive Member
hi,
Select fldNumber from tblNumbers
where fildNumber is not null
group by count(fldNumbers)
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|