Is it possible to count the number of upper and lowercase cell entries? See attached spreadsheet for example.
Is it possible to count the number of upper and lowercase cell entries? See attached spreadsheet for example.

This month, every Windows Secrets subscriber can download a one-chapter excerpt of Windows 7: The Missing Manual.Windows 7: The Missing Manual provides valuable information to help you overcome these difficulties in learning a new operating system. Subscribe today to download your free excerpt.
The following formulas are array formulas, i.e. they must be confirmed with Ctrl+Shift+Enter:
=SUM(1*EXACT(A1:A12,LOWER(A1:A12)))
=SUM(1*EXACT(A1:A12,UPPER(A1:A12)))
EXACT compares two strings, case-sensitive. The result is TRUE or FALSE. Multiplying by 1 forces this to be interpreted as numbers 1 and 0.
Thank you. Your help is much appreciated and you have saved me hours of work!