Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

XL: How to Count Cells That Contain Formulas, Text, or Numbers


View products that this article applies to.

Summary

In Microsoft Excel, you can count the number of cells in a worksheet that contain formulas, text, or numbers, by using the Go To Special dialog box to select the cells and then running a macro that counts the number of selected cells.

↑ Back to the top


More information

Microsoft provides programming examples for illustration only, without warranty either expressed or implied, including, but not limited to, the implied warranties of merchantability and/or fitness for a particular purpose. This article assumes that you are familiar with the programming language being demonstrated and the tools used to create and debug procedures. Microsoft support professionals can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific needs.
If you have limited programming experience, you may want to contact a Microsoft Certified Partner or Microsoft Advisory Services. For more information, visit these Microsoft Web sites:

Microsoft Certified Partners - https://partner.microsoft.com/global/30000104

Microsoft Advisory Services - http://support.microsoft.com/gp/advisoryservice

For more information about the support options that are available and about how to contact Microsoft, visit the following Microsoft Web site:http://support.microsoft.com/default.aspx?scid=fh;EN-US;CNTACTMS

Selecting the Cells

To select formulas, text, or numbers, follow these steps:
  1. On the Edit menu, click Go To, and then click the Special button.
  2. In the Go To Special dialog box, to select all formulas, click Formulas and then click to select the Numbers, Text, Logicals, and Errors check boxes. To select text, select the Constants option and then click to select only the Text check box. To select numbers, select the Constants option and click to select only the Numbers check box.

Using VBA Code to Count the Selected Cells

To count the number of cells in the selection and display the result in a message box, use the following procedure:
Sub Count_Selection()
    Dim cell As Object
    Dim count As Integer
    count = 0
    For Each cell In Selection
        count = count + 1
    Next cell
    MsgBox count & " item(s) selected"
End Sub
				
You can assign this procedure to a command button on the worksheet in order to display the number of items selected when you click the button.

↑ Back to the top


Keywords: KB213507, kbprogramming, kbhowto, kbdtacode

↑ Back to the top

Article Info
Article ID : 213507
Revision : 8
Created on : 1/24/2007
Published on : 1/24/2007
Exists online : False
Views : 330