This is in Access 2007. I have tried writing somethig like:

Forms!MyForm!TextBox = Count(ISNUMERIC(ISNUMERIC(QueryResult.Reading)))

But this returns non-numeric results. I have also tried:

Forms!MyForm!TextBox = IIF(ISNUMERIC(QueryResult.Reading),Count(ISNUMERIC(QueryResult.Reading),"")

Anyone have any ideas? I am lost.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Try using SUM instead of COUNT, in such a way that you are counting a result if it is numeric and ignoring it if it is not. Please note, I am not in a position to test the code below, but it should give you an idea of what I mean.

Forms!MyForm!TextBox = SUM(IIF(ISNUMERIC(QueryResult.Reading),1,0))
link|improve this answer
This was exactly what I was looking for. Thanks! – Nick S. Apr 3 '09 at 13:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.