View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
K Dales[_2_] K Dales[_2_] is offline
external usenet poster
 
Posts: 1,163
Default No of Records returned by a Query

you can use the COUNT() or COUNTA() functions on any of your querytable
columns, as long as it is one you know is never null (blank); for example, if
I had a date in column C that ALWAYS had a value, I would use
=COUNT($C:$C)-1. The purpose of the -1 is to subtract the column header,
assuming you chose to display them.

"Soniya" wrote:

Hi All,

How I can count the number of records returned by an MS Query from
Access DB?

TIA