Written by Allen Wyatt (last updated May 28, 2022)
This tip applies to Excel 97, 2000, 2002, and 2003
Pradeep has a need to figure out the number of terms in any given formula. For instance, in the formula =5+80*3/6 there are four terms. He would like a formula he can use to tell him the number of terms (4) in the formula.
There is no built-in function you can use in Excel to garner this information. Thus, the cleanest approach would be to create your own function, such as the following:
Function TermsInFormula(TheCell As Range) Dim sFormula As String Dim vOps As Variant Dim iCount As Integer Dim J As Integer Dim AWF As WorksheetFunction Application.Volatile vOps = Array("+", "-", "*", "/", "^") Set AWF = Application.WorksheetFunction sFormula = TheCell.Formula iCount = 1 For J = LBound(vOps) To UBound(vOps) iCount = iCount + Len(sFormula) _ - Len(AWF.Substitute(sFormula, vOps(J), "")) Next TermsInFormula = iCount Set AWF = Nothing End Function
The function checks the formula in the referenced cell to see how many of the five mathematical operators it contains. The number of terms in the formula is always one more than the number of operators, since each term is separated by an operator.
In order to use the function, you would enter the following formula into a cell, assuming that you want to know how many terms are in the formula in cell A1:
=TermsInFormula(A1)
The function will work on formulas, numbers, and text that looks like a formula. It will not, however, consider the "/" in dates as an operator since the display of the date is not part of the Formula property that the function examines. (The display of dates is part of the Text or Value property, not the Formula property.)
Earlier I stated that the number of terms in a formula is generally one more than the number of operators. The operative word here is "generally," as not all formulas are that simple. You'll want to make sure that you visually examine the types of formulas with which you are working and make sure that you are seeing the results you expect.
Note:
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (3265) applies to Microsoft Excel 97, 2000, 2002, and 2003. You can find a version of this tip for the ribbon interface of Excel (Excel 2007 and later) here: Number of Terms in a Formula.
Dive Deep into Macros! Make Excel do things you thought were impossible, discover techniques you won't find anywhere else, and create powerful automated reports. Bill Jelen and Tracy Syrstad help you instantly visualize information to make it actionable. You’ll find step-by-step instructions, real-world case studies, and 50 workbooks packed with examples and solutions. Check out Microsoft Excel 2019 VBA and Macros today!
When editing information in a cell, you may need to know the result of a portion of your formula. The shortcut described ...
Discover MoreAt the heart of working with Excel is the process of creating formulas that calculate results based on information within ...
Discover MoreRemember your number line from your early years in school? Some numbers can be below zero (negative numbers) and others ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
There are currently no comments for this tip. (Be the first to leave your comment—just use the simple form above!)
Got a version of Excel that uses the menu interface (Excel 97, Excel 2000, Excel 2002, or Excel 2003)? This site is for you! If you use a later version of Excel, visit our ExcelTips site focusing on the ribbon interface.
FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2025 Sharon Parq Associates, Inc.
Comments