How to Highlight Cells Containing Formulas in Excel

,

This post will guide you how to highlight cells in which contain formulas using Conditional Formatting feature in Excel. How do I conditionally format a cell if it contains formula using a User defined function in combination with Conditional Formatting feature in Excel 2013/2016.

Assuming that you have a list of data in range A1:C5, in which contain product names, sales values and formulas. And you want to only highlight cells if containing formula. How to accomplish it. This post will show you two methods to conditionally format cells if the cells contain formula.

Method1: Highlight Cells Containing Formulas Using Defined Name


To highlight Cells containing formulas in your worksheet, you need to create a new range name IsFormula to your workbook. Just do the following steps:

Step1: go to Formulas tab, and click Name Manager button under Defined Names group. and the Name Manager dialog will open.

highlight cells contain formula1

Step2: click New button in the Name Manager dialog box, and the New Name dialog will open.

highlight cells contain formula2

Step3: type a name called IsFormula into the Name text box, and choose Workbook from the drop-down list of Scope. then you need to type the following formula into the Refers to text box. click Ok button.

=GET.CELL(48,INDIRECT(“rc”,FALSE))

highlight cells contain formula3

Step4: select the range of cells on your worksheet to be conditioanlly formatted for formulas.

highlight cells contain formula4

Step5: go to Home tab, click Conditional Formatting command under Styles group, and select New Rule from the drop down menu list. And the New Formatting Rule dialog will open.

apply shade to every other row1

Step6: click Use a formula to determine which cells to format option in the Select a Rule Type section in the New Formatting Rule dialog box, and type the following formula into the Format values where this formula is true text box.

=IsFormula

highlight cells contain formula5

Step7: click Format button, and the Format Cells dialog will open. swith to Fill tab in the Format Cells dialog box, and select one backgroud color as you need to highlight the cells with formulas. click Ok button to back to New Formatting Rule dialog box.

apply shade to every other row4

apply shade to every other row5

Step8: click OK button, let’ see the last result:

highlight cells contain formula6

Method2: Highlight Cells Containing Formulas Using User Defined Function


You can also use an Excel User Defined Function in conbination with Condtional Formatting feature to highlight cells containing formuals. just do the following steps:

Step1# open your excel workbook and then click on “Visual Basic” command under DEVELOPER Tab, or just press “ALT+F11” shortcut.

 Get the position of the nth using excel vba1

Step2#  then the “Visual Basic Editor” window will appear.

Step3# click “Insert” ->”Module” to create a new module.

convert column number to letter3

Step4# paste the below VBA code into the code window. Then clicking “Save” button.

highlight cells contain formula7

Function IsFormula(Rng As Range) As Boolean
    Application.Volatile
    IsFormula = Rng.IsFormula
End Function

Then you need to repeat the above Step4-Step8 to highlight cells containing formulas in your selected range of cells.

 

 

 

 

Leave a Reply