Forum Discussion

Kathyfromtheshire's avatar
Kathyfromtheshire
Copper Contributor
Feb 05, 2024
Solved

Function to count Application

How do you count a number of entries when they do not have numerical values?   As an example, if I had a number of names listed on a sheet & I wanted to count how many names were on the sheet, what...
  • HansVogelaar's avatar
    Feb 05, 2024

    Kathyfromtheshire 

    If you want to count the number of non-blank cells, use COUNTA. Example:

     

    =COUNTA(A2:A50)

     

    If you want to count how many unique names there are (i.e. counting duplicate names only once), use COUNTA combined with UNIQUE. For example:

     

    =COUNTA(UNIQUE(A2:A50))

Resources