Conditional Formatting with More than 3 Icon Sets in Excel

The article will show you how to use Conditional Formatting Icon Sets more than 3 in Excel. Normally we use Icon Sets to emphasize the significance of a data in an Excel sheet. Generally, you can use 3 to 5 icons while using Excel Conditional Formatting. In this article, we will be describing the processes of applying Icon Sets of more than 3 in a dataset.


Download Practice Workbook


2 Ways to Use Conditional Formatting with More than 3 Icon Sets in Excel

In the dataset, you will see the performances of some students in an Exam. We are going to apply Conditional Formatting Icon Sets based on their performances. Notice that the performance category is divided into 5 classes.

excel conditional formatting icon sets more than 3


1. Using Conditional Formatting Rule to Apply More than 3 Icon Sets

We can use Conditional Formatting Icon Sets more than 3 simply by using the Conditional Formatting Rule. Because Excel has features to use 3 to 5 Icon Sets. Let’s go through the process below for a better understanding.

Steps:

  • First, we are going to classify these performances by numbers, because it’s easier for Excel to operate on numbers.
  • Also, create a column to store the Performance Rating.

  • Next, type the following formula in cell D5.

=VLOOKUP(C5,$F$5:$G$9,2,FALSE)

excel conditional formatting icon sets more than 3

The formula uses the VLOOKUP function which returns the Helper Value as a Rating based on the Performance. Here, we see that ‘Very Good’ is referred to by 4. So the formula will return 4 in cell D5.

  • After that, press the ENTER button and you will see the Performance Rating of Jon by a number.

excel conditional formatting icon sets more than 3

  • Next, we will apply Conditional Formatting. Select the cells D5 to D13 and then go to Home >> Conditional Formatting >> New Rule.

Next, the New Formatting Rule window will appear. In this window,

  • Select ‘Format all cells based on their values’.
  • Next, choose Icon Sets from the Format Style
  • After that, check ‘Show Icon only’ for convenience.
  • Thereafter, set the Type of values to Number.
  • Later, set the condition values for the icons.
  • Finally, click OK.

excel conditional formatting icon sets more than 3

This operation will show you the Rating of the students with 5 different Icons.

You can also find these icons from Home >> Conditional Formatting >> Icon Sets.

excel conditional formatting icon sets more than 3

Thus you can use Excel Conditional Formatting Icon Sets of more than 3.

Read More: Excel Conditional Formatting: Add Custom Icon Sets (2 Ways)


2. Applying Excel VBA to Use Conditional Formatting with over 3 Icon Sets

We can also use Microsoft Visual Basic for Applications (VBA) to apply Conditional Formatting Icon Sets more than 3 in an Excel sheet. Let’s go through the process below. We will use the dataset that we obtain in Method 1.

Steps:

  • First, go to the Developer Tab and then select Visual Basic.

  • After that, the VBA editor will appear. Select Insert >> Module to open a VBA Module.

excel conditional formatting icon sets more than 3

  • Now, type the following code in the VBA Module.
Option Explicit
Public Sub ColorIconSet()
Application.ScreenUpdating = False
IconColorSet Sheet3.UsedRange
Application.ScreenUpdating = True
End Sub
Public Sub IconColorSet(ByRef mnRng As Range)
Dim mnCell As Range, mnShape As Shape, mnCell_address As String
For Each mnShape In mnRng.Parent.Shapes
If InStrB(mnShape.Name, "$") > 0 Then mnShape.Delete
Next: DoEvents
For Each mnCell In mnRng
If Not IsError(mnCell.Value2) Then
If Val(mnCell.Value2) > 0 And Not IsDate(mnCell) Then
mnCell_address = mnCell.Address
Set mnShape = Sheet3.Shapes.AddShape(msoShapeOval, mnCell.Left + 5, mnCell.Top + 2, 10, 10)
mnShape.ShapeStyle = msoShapeStylePreset38: mnShape.Name = mnCell_address
mnShape.Fill.ForeColor.RGB = DefineShapeColor(Val(mnCell.Value2))
mnShape.Fill.Solid
End If
End If
Next
End Sub
Public Function DefineShapeColor(ByRef mnCell_Value As Long) As Long
Select Case True
Case mnCell_Value = 1:    DefineShapeColor = RGB(222, 0, 10):   Exit Function
Case mnCell_Value = 2:    DefineShapeColor = RGB(0, 111, 220):  Exit Function
Case mnCell_Value = 3:    DefineShapeColor = RGB(0, 0, 255):    Exit Function
Case mnCell_Value = 4:    DefineShapeColor = RGB(210, 0, 200):  Exit Function
Case mnCell_Value = 5:    DefineShapeColor = RGB(140, 180, 0):  Exit Function
End Select
End Function

Code Explanation

  • First, we named the Sub Procedure as ColorIconSet.
  • Then we set the ScreenUpdating Application to False.
  • Next, we use the .UsedRange property to use another Sub Procedure IconColorSet.
  • In the IconColorSet Sub Procedure, we declared some variables: mnCell As Range, mnShape As Shape and mnCell_address As String.
  • After that, a For Loop and If Statement are used to define the position of the Shapes that we are going to use to classify the Performance Rating of the students.
  • Also, we made a user-defined function named DefineShapeColor to set the color of the shapes based on the cell values. We will get five different shape colors for five different ratings after running the code. The ratings are defined by numbers from 1 to 5.
  • Now, go back to your sheet and Run the Macro.

excel conditional formatting icon sets more than 3

  • After that, you will see the Ratings will have their individual shapes. We obtained these shapes via Conditional Formatting with the help of VBA.

Thus, you can obtain Excel Conditional Formatting Icon Sets of more than 3 by using VBA.

Read More: Excel Conditional Formatting Icon Sets with Relative Reference


Practice Section

Here, I’m giving you the dataset of this article so that you can practice these methods on your own.

excel conditional formatting icon sets more than 3


Conclusion

Suffice to say, you will learn the easy and effective procedures of using Excel Conditional Formatting Icon Sets more than 3 after reading this article. If you have any better methods or questions or feedback regarding this article, please share them in the comment box. This will help me enrich my upcoming articles. For more queries, kindly visit our website ExcelDemy.


Related Articles

Meraz Al Nahian

Meraz Al Nahian

Hello, Nahian here! I do enjoy my efforts to help you understand some little basics on Microsoft Excel I've completed my graduation in Electrical & Electronic Engineering from BUET and I want to be a successful engineer in my life through intellect and hard-work, and that is the goal of my career.

We will be happy to hear your thoughts

Leave a reply

5 Excel Hacks You Never Knew

Genius tips to help you unlock Excel's hidden features

FREE EMAIL BONUS

ExcelDemy
Logo