|
-
May 27th, 2006, 01:30 AM
#1
Thread Starter
New Member
[RESOLVED] Count(fld) help :(
I have a table that looks like this
VB Code:
|---------|----------|
| received | checked |
|---------|----------|
Mr T | Mr M |
Mr T | |
Mr T | Mr T |
Mr M | |
---------------------
I need to count the number of times of received and checked.
The problem is when i use Count(checked), It gives me value 4 (I'm assuming it also counts the empty fields ) when it should be 2.
So my question is, what formula should I use? Or I am using Count(fld) the wrong way?
Please help and enligthen me.. Thanks in advance.
-
May 29th, 2006, 03:44 AM
#2
Thread Starter
New Member
Re: Count(fld) help :(
Please give me some quick help dudes.. thanks
-
May 29th, 2006, 12:09 PM
#3
Re: Count(fld) help :(
Count does not include a record if the field is null. I would assume your "empty fields" actually contain an empty string, thus are included in the count.
You could use a Running Total instead. In the Evaluate section, select "Use a Formula" and write something like
Length(Trim({Table Name.checked})) > 0
-
May 29th, 2006, 01:23 PM
#4
Thread Starter
New Member
Re: Count(fld) help :(
Thank you Mr Bruce
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
|