How to change cell formatting using a Drop Down list
This article demonstrates how to apply different cell formatting to a cell range based on a Drop Down list, column B contains an Excel Table with numerical values.
The Drop down list in cell D3 lets you choose between five different types of cell formatting, they are:
- No formatting (General)
- % (percentage)
- Numbers formatted as time
- Highlight numbers below average
- Highlight numbers above average
You can, of course, pick whatever cell formatting you want and how many or few as you want. I chose those for demonstrational purposes.
The animated image above shows me selecting different formattings and column B instantly changes based on what I selected. This technique can be useful if you are building a Dashboard.
Here is how I did it.
Create an Excel Table
This step is optional, however, I highly recommend it if you know you will be adding more values later on.
An Excel Table applies Conditional Formatting to new values automatically, this makes it really useful because there is no need to extend CF formatting or change CF formulas when new values are added.
- Select all cells in your data set.
- Go to tab "Insert" on the ribbon.
- Press with left mouse button on "Table" button, a dialog box appears.
- Press with left mouse button on OK button.
You data set has now a different cell formatting applied, this is done every time data is converted to an Excel Table. You can change this if you like.
- Press with left mouse button on any cell in your Excel Table.
- Go to tab "Table Design" on the ribbon.
- Here you have plenty of Table Styles to choose from.
Create a Drop Down list
A Drop Down list lets you control what the user enters in a worksheet, press with left mouse button on the black arrow next to the cell to expand the list.
The list shows valid values the user can select, simply press with left mouse button on a value with the mouse or use up/down arrow keys.
- Select cell D3.
- Go to tab "Data" on the ribbon.
- Press with left mouse button on "Data Validation" button on the ribbon and a dialog box appears.
- Go to tab "Settings" on the dialog box. See image below.
- Select List
- Type:Â No formatting, %, Time, Above Average, Below Average
- Press with left mouse button on OK button to close the dialog box.
Apply Conditional formatting
Conditional Formatting allows you to format a cell or cell range based on a condition, in this case, the condition is given in cell D3 where we have a Drop Down list located.
We need to create five different CF formulas, each one applying different cell formatting to a column in the Excel Table.
For example, the image above shows that the selected value in the Drop Down list is "Above Average", the corresponding Conditional Formatting formula is activated and highlights values in Excel Table if a number is above the average of all numbers in the "Values" column.
Follow these steps to apply Conditional Formatting to column Values in the Excel Table.
- Select all values in column "Values".
- Go to tab "Home" on the ribbon.
- Press with left mouse button on the "Conditional Formatting" button and a menu appears.
- Press with left mouse button on "New Rule...".
- Copy this formula:
=($D$3="Above Average")*(INDIRECT("Table1[@Values]")>AVERAGE(INDIRECT("Table1[Values]")))
and paste to "Format values where this is true:" - Press with left mouse button on "Format..." button and pick a color. Cells that meet the requirement (return TRUE) in the above formula will be highlighted with this color.
- Press with left mouse button on OK button.
- Press with left mouse button on OK button once again to close the Conditional Formatting dialog box.
- Repeat step 1 to 8 with the remaining cell formattings.
Here are the formulas and formatting:
% formula
The formula checks if the value in cell D3 is %. If true the following formatting is applied:
Time formula
The formula checks if the value in cell D3 is Time. If true the following formatting is applied:
Above Average
In this formula, cell D3 is "Above Average" AND checks if each value is above the average of the table values. If TRUE the cell is highlighted.
Below Average
Cf misc category
Here is how to highlight every other row using conditional formatting. Conditional formatting formula: =ISEVEN(ROW())*OR($B3:$D3<>"") Alternative CF formula: =EVEN(ROW())=ROW() This […]
Question: I have a list that I keep adding rows to. How do i create a border that expands as […]
The picture above shows Conditional Formatting highlighting cells in cell range F3:Y22Â based on row and column values in column B […]
Conditional formatting category
This article explains how to count cells highlighted with Conditional Formatting (CF). The image above shows data in cell range […]
The image above demonstrates a conditional formatting formula that colors a record if there is at least one record that […]
adam asks: Hi, I have a situation where I want to count if this value is duplicate and if it […]
Drop down lists category
This article explains how to build dependent drop down lists. Here is a list of order numbers and products. We […]
Question: How do I create a drop-down list with unique distinct alphabetically sorted values? Table of contents Sort values using […]
Josh asks: now if i only knew how to apply these dependent dropdown selections to a filter, i'd be set. […]
Functions in this article
More than 1300 Excel formulas
Conditional Formatting categories
Excel categories
3 Responses to “How to change cell formatting using a Drop Down list”
Leave a Reply
How to comment
How to add a formula to your comment
<code>Insert your formula here.</code>
Convert less than and larger than signs
Use html character entities instead of less than and larger than signs.
< becomes < and > becomes >
How to add VBA code to your comment
[vb 1="vbnet" language=","]
Put your VBA code here.
[/vb]
How to add a picture to your comment:
Upload picture to postimage.org or imgur
Paste image link to your comment.
Something doesn't work quite right with the above and below average conditional formattings.
Brilliant nonetheless.
At least not in the version I opened and ran on Excel 2010
Cape,
Something doesn't work quite right with the above and below average conditional formattings.
What happens, what is wrong? I have excel 2010.