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.