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.

How to sum a range of cells based on a number format in Excel


View products that this article applies to.

Summary

This article includes a sample Microsoft Visual Basic for Applications custom function that sums the values in a range of cells that are formatted with a specific custom number format.

↑ Back to the top


More information

Microsoft provides programming examples for illustration only, without warranty either expressed or implied. This includes, but is not limited to, the implied warranties of merchantability or fitness for a particular purpose. This article assumes that you are familiar with the programming language that is being demonstrated and with the tools that are used to create and to debug procedures. Microsoft support engineers 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 requirements. The following example creates a user-defined function that sums values based on a custom number format.

Preparing sample data

  1. Create a new workbook and type the following data:
    A1: 100
    A2: 5
    A3: 100
    A4: 5
    A5: 100
  2. Select cells A1, A3, and A5. To do this, press and hold down CTRL (or COMMAND on a Macintosh), and then click cells A1, A3, and A5.
  3. On the Format menu, click Cells. Click the Number tab.
  4. In the Category list, click Custom. In the Type box, type F0, and then click OK.
Note You can use different custom number formats with this example.

Creating the function in the versions of Excel that are listed in the "Applies To" section

  1. Press ALT+F11 to start the Visual Basic Editor.
  2. On the Insert menu, click Module.
  3. In the module sheet, type the following code:
          Function SumFormat(CellRange)
    
             ' Loop through each cell in the range that is passed to this
             ' function.
             For Each Item In CellRange
    
                ' Check to see if the cell is formatted as "F"0.
                ' The additional quotation marks are necessary to look for
                ' actual quotation marks in the format string.
                If Item.NumberFormat = """F""0" Then
    
                   ' Add the cell value to the variable total.
                   total = total + Item.Value
    
                End If
    
             Next Item
    
             ' Set the results of total equal to the function name.
             SumFormat = total
    
          End Function
    						
  4. Use one of the following methods:
    • In Excel X for Mac and later versions, click Close and Return to Microsoft Excel on the Excel menu.
    • In all other versions of Excel, click Close and Return to Microsoft Excel on the File menu.
  5. Select cell A7.
  6. Type =SumFormat(A1:A5), and then press ENTER.

    Cell A7 contains the value 300 because cells A2 and A4 are not formatted with the custom number format of "F"0.

Creating the function in Microsoft Excel 5.0 and 7.0

  1. On the Insert menu, point to Macro, and then click Module.
  2. In the module sheet, type the following code:
          Function SumFormat(CellRange)
    
             ' Loop through each cell in the range that is passed to this
             ' function.
             For Each Item In CellRange
    
                ' Check to see if the cell is formatted as "F"0.
                ' The additional quotation marks are necessary to look for
                ' actual quotation marks in the format string.
                If Item.NumberFormat = """F""0" Then
    
                   ' Add the cell value to the variable total.
                   total = total + Item.Value
    
                End If
    
             Next Item
    
             ' Set the results of total equal to the function name.
             SumFormat = total
    
          End Function
    						
  3. Click Sheet1.
  4. Select cell A7.
  5. Type =SumFormat(A1:A5), and then press ENTER.

    Cell A7 contains the value 300 because cells A2 and A4 are not formatted with the custom number format of "F"0.

↑ Back to the top


References

Excel 2002 for Windows and later versions

For more information about custom number formats, click Microsoft Excel Help on the Help menu, type custom format codes, click Search, and then click a topic to view it.

Excel X for Mac and later versions

For more information about custom number formats, click Excel Help on the Help menu, type number format codes, click Search, and then click a topic to view it.

↑ Back to the top


Keywords: kbdtacode, kbhowto, kbprogramming, KB164317

↑ Back to the top

Article Info
Article ID : 164317
Revision : 6
Created on : 1/19/2007
Published on : 1/19/2007
Exists online : False
Views : 477