Please Note: This article is written for users of the following Microsoft Excel versions: 2007, 2010, 2013, 2016, 2019, and Excel in Microsoft 365. If you are using an earlier version (Excel 2003 or earlier), this tip may not work for you. For a version of this tip written specifically for earlier versions of Excel, click here: Number of Terms in a Formula.

Number of Terms in a Formula

Written by Allen Wyatt (last updated August 6, 2021)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, and Excel in Microsoft 365


10

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 generally 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:

If you would like to know how to use the macros described on this page (or on any other page on the ExcelTips sites), I've prepared a special page that includes helpful information. Click here to open that special page in a new browser tab.

ExcelTips is your source for cost-effective Microsoft Excel training. This tip (9458) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, and Excel in Microsoft 365. You can find a version of this tip for the older menu interface of Excel here: Number of Terms in a Formula.

Author Bio

Allen Wyatt

With more than 50 non-fiction books and numerous magazine articles to his credit, Allen Wyatt is an internationally recognized author. He is president of Sharon Parq Associates, a computer and publishing services company. ...

MORE FROM ALLEN

Indexing Based on a Range of Letters

Word provides many options for creating indexes. One option allows you to specify that the index contain only entries ...

Discover More

Speeding Up Large Worksheets

If your worksheet gets large enough, you may notice a severe slowdown when it is recalculated. This tip provides some ...

Discover More

Getting Information About Fields

Want to know what a certain field does and how to use it? Word's online help is surprisingly helpful in getting the ...

Discover More

Professional Development Guidance! Four world-class developers offer start-to-finish guidance for building powerful, robust, and secure applications with Excel. The authors show how to consistently make the right design decisions and make the most of Excel's powerful features. Check out Professional Excel Development today!

More ExcelTips (ribbon)

Limiting a Calculated Value to a Range

If you want to limit what is returned by a formula to something between lower and upper boundaries, the solution is to ...

Discover More

Shortcut for Viewing Formulas

If you need to switch between viewing formulas and viewing the results of those formulas, you'll love the keyboard ...

Discover More

Transposing and Linking

Sometimes it is helpful to look at data that is rotated 90 degrees. Excel allows you to use Paste Special to transpose ...

Discover More
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

View most recent newsletter.

Comments

If you would like to add an image to your comment (not an avatar, but an image to help in making the point of your comment), include the characters [{fig}] (all 7 characters, in the sequence shown) in your comment text. You’ll be prompted to upload your image when you submit the comment. Maximum image size is 6Mpixels. Images larger than 600px wide or 1000px tall will be reduced. Up to three images may be included in a comment. All images are subject to review. Commenting privileges may be curtailed if inappropriate images are posted.

What is 9 + 3?

2021-08-07 12:08:15

J. Woolley

You can get some interesting information about a formula from this web site: https://www.formulaboost.com/parse
You can also use the FormulaParser macro in My Excel Toolbox, which simply passes the ActiveCell's formula to that site.
See https://sites.google.com/view/MyExcelToolbox/


2021-08-06 16:42:34

David J Bonin

Hmmm...

Would you consider the % sign as an operator?


2021-08-06 15:40:47

Rick Rothstein

Here is another way to write your TermsInFormula function...

Function TermsInFormula(TheCell As Range)
Dim Frmla As String, V As Variant
Frmla = Replace(TheCell.Formula, " ", "")
For Each V In Split("+ - * / ^")
Frmla = Replace(Frmla, V, " ")
Next
TermsInFormula = 1 + UBound(Split(Application.Trim(Frmla)))
End Function


2021-08-06 07:49:28

Billy Thomas

The task can be accomplished with 2 formulas.
1. A simple expression such as "=2+3+4 " can be converted to text using the FORMULATEXT function.
2. With the FORMULATEXT function in Cell A1 for example, use LEN(A1)-LEN(SUBSTITUTE(A1,"+","")).
The result will be 2, the number of +'s in the formula and therefore the number of terms Continue to add "-LEN(SUBSTITUTE's" for other operators. The "=" can generally be ignored.


2014-11-23 11:41:58

John Morriss

According to the definitions of algebra, a term is a collection of factors, multiplied or divided, and separated from other terms by addition or subtraction. The example expression has two terms, the first with one numerical factor, the second with three numerical factors.


2014-11-23 07:46:56

balthamossa2b

In the first formula you have forgotten to replace an A1 for an A4 in the + substitute block. Same in the second one, there is an A5 instead of A8. That's why the result doesn't work.


You misunderstand the formula. X doesn't represent the number of factors, it's the number of TYPES of factors you are looking for. If you are looking for "+", "-", "*", "/", no matter the number, use 4. If you add to the search list "^", use 5. It will work if each factor is used 1, 0 or 100 times in the formula.

See following example where first I only look for the "+" operator, then I look for everything else. The result is correct and independent of X.

http://i.imgur.com/rlt99d2.png


2014-11-22 05:50:50

Michael (Micky) Avidan

@balthamossa2b,
Sorry, but I find it hard to follow you.
Please take, a good, look at the linked picture.
I don't think I can make myself much clearer than that.
http://i61.tinypic.com/j90zl4.png
Michael (Micky) Avidan
“Microsoft® Answers" - Wiki author & Forums Moderator
“Microsoft®” MVP – Excel (2009-2015)
ISRAEL


2014-11-21 05:43:05

balthamossa2b

@Micky

For your example, write the formula whose terms you want to count in A1 with a leading apostrophe.

The formula to place in say, B1, is:


=LEN(A1)*4 + 1 - LEN(SUBSTITUTE(A1,"+",""))-LEN(SUBSTITUTE(A1,"*",""))-
LEN(SUBSTITUTE(A1,"/",""))-
LEN(SUBSTITUTE(A1,"^",""))

The result is 6. It will also give the right result by replacing the 4 by 5 and adding another SUBSITUTE term for an additional operator not present in the formula (for example, - ):

=LEN(A1)*5 + 1 - LEN(SUBSTITUTE(A1,"+",""))-LEN(SUBSTITUTE(A1,"*",""))-
LEN(SUBSTITUTE(A1,"/",""))-
LEN(SUBSTITUTE(A1,"^",""))-
LEN(SUBSTITUTE(A1,"-",""))


2014-11-20 05:54:49

Michael (Micky) Avidan

@balthamossa2b,
To the best of my knowledge, the task, in this tip, was to COUNT(!) the number of terms in any given formula.
For instance, in the formula: =5+80*3/6^3+213
the answer is : 6
Can you, please, demonstrate how your, suggested, formula RETURNS the figure: 6 (with or without adding an apostrophe) ?
Michael (Micky) Avidan
“Microsoft® Answers" - Wiki author & Forums Moderator
“Microsoft®” MVP – Excel (2009-2015)
ISRAEL


2014-11-19 10:05:10

balthamossa2b

I find that defining AWF is unnecessarily convoluted when you can just write it. It feels weird having to set AWF as Worksheet Function when it's defined as such, but I haven't ever used it so I don't know how it works.

If you don't want to use a Worksheet Function you can always use native VBA stuff: INSTR to find the character and use the result as the starting position for the next INSTR. Loop for each character.



Another solution: Application.Match. Much like Substitute it accepts a matrix as searching parameter.




Yet another solution, without need of VBA (props to http://www.ozgrid.com/forum/showthread.php?t=45651 for inspiration):


=LEN(A1)*X + 1 -LEN(SUBSTITUTE(A1,"+","")) -LEN(SUBSTITUTE(A1,"-",""))...

Where X is the number of operators you look for (in this case 5). You just need to put an apostrophe manually before the formula to convert it to text (or use VBA... which kind of defeats the purpose of using a macroless formula).


This Site

Got a version of Excel that uses the ribbon interface (Excel 2007 or later)? This site is for you! If you use an earlier version of Excel, visit our ExcelTips site focusing on the menu interface.

Newest Tips
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

(Your e-mail address is not shared with anyone, ever.)

View the most recent newsletter.