G
Guest
I,m trying to count how many numbers, in a column, that have a value greater
than zero. Any ideas anyone
than zero. Any ideas anyone
Allen Browne said:In query design view, type something like this into a fresh column in the
Field row:
[MyField] > 0
Depress the Total button on the toolbar.
Choose Count under this field.
If you wanted to do it in code:
DCount("*", "MyTable", "MyField > 0")
--
Allen Browne - Microsoft MVP. Perth, Western Australia
Reply to group, rather than allenbrowne at mvps dot org.
Zab said:I,m trying to count how many numbers, in a column, that have a value
greater
than zero. Any ideas anyone