Excel VBA | count() functions Last Updated : 29 Sep, 2022 Comments Improve Suggest changes Like Article Like Report Visual Basic for Applications (VBA) is the programming language of Excel and other offices. It is an event-driven programming language from Microsoft. With Excel VBA one can automate many tasks in excel and all other office software. It helps in generating reports, preparing various charts, graphs and moreover, it performs calculation using its various functions. Let’s see Count() functions in Excel. COUNT: It allows to count the number of cells that contain numbers in a range. One can use the COUNT function to calculate the total number of entries in an array of numbers. Syntax:=COUNT(value1, value2…) value1: The very first item required to count numbers. value2: It can be specified upto 255 other entries which you want to count. Note: -> Only those arguments are counted that are numbers or text enclosed between quotation marks, as, “2”. -> Arguments like logical values and text representation of numbers that are typed directly are counted. -> Any values that cannot be translated to numbers are ignored. Example: Output: COUNTA: This counts only those range of cells which are not empty. Syntax:=COUNTA(value1, value2…) value1: It is the first argument to be counted. value2: All additional arguments can be represented that has to becounted. This can be specified upto 255 arguments. Note: This will count cells that contain any kind of information that includes error values or empty text also, but not empty cells. Example: Output: COUNTIF:This will allow user to count the number of cells which meet a certain criteria. Syntax: =COUNTIF(where to look, what to look criteria) Example: Output: COUNTIFS: It will map criteria to cells in multiple ranges and the number of times all criteria met are counted. Syntax: =COUNTIFS(criteria_range1, criteria1, [criteria_range2, criteria2]…) criteria_range1: First range to evaluate criteria. criteria1: Criteria in any form that defines which all cells to be counted. criteria_range2, criteria2, … : Additional range with their criteria. Specified upto 127 range/criteria. Remarks: -> Wildcard characters can be used. -> If criteria meets an empty cell, it will be treated as 0 value. -> Count increases by 1 as the first cells meet their criteria, then the second cell meet and count again increases by 1 and so on. Example: Output: Comment More infoAdvertise with us Next Article Excel VBA | count() functions A aishwarya.27 Follow Improve Article Tags : Excel ExcelGuide Similar Reads Excel VBA | sum() functions Visual Basic for Applications (VBA) is the programming language of Excel and other offices. It is an event-driven programming language from Microsoft. With Excel VBA one can automate many tasks in excel and all other office software. It helps in generating reports, preparing various charts, graphs a 2 min read VBA Date and Time Functions in Excel Date and Time Functions are the inbuilt functions that give us the opportunity to see the date or time according to the user's need. Suppose a user needs to see the month or the day or the year then it can be easily seen by different date functions. Similarly, for the time function, also we can mani 5 min read Top Excel Data Analysis Functions Have you ever analyzed any data? What does it mean? Well, analyzing any kind of data means interpreting, collecting, transforming, cleaning, and visualizing data to discover valuable insights that drive smarter and more effective decisions related to business or anywhere you need it. So, Excel solve 6 min read VBA Collections in Excel An object that can store a number of values whether it can be of string data type or integer which can be easily manipulated or iterated is called Collection. In Excel VBA we should declare it as a new collection. It is an unchangeable, one-dimensional entity, unaffected by size adjustments. This im 6 min read Debugging VBA Code in Excel When we use VBA to write code in excel or when we any programming language to write code we may encounter errors that need to be analyzed, checked, and fixed. To overcome this problem most IDEs and programming languages support debugging. Debugging is the process of executing your programming codes 5 min read Like