Excel Macro code to Highlight Greater than Values

How to Highlight Greater than Values in excel sheet through VBA Macro Code

To use VBA macro code in an Excel spreadsheet, you need to do the following:

  1. Open the Excel spreadsheet where you want to use the macro code.

  2. Press “Alt + F11” to open the VBA developer window.

  3. In the VBA developer window, click the “Insert” menu and select “Module” to create a new module.

  4. Paste the VBA macro code into the module window.

  5. To run the macro, click the “Run” button in the VBA developer window or press “F5” on your keyboard.

Alternatively, you can also create a button or a shortcut key to run the macro. To create a button, go to the “Developer” tab in the main Excel window and click the “Insert” button. Then select a button control and draw it on the worksheet. Right-click the button and select “Assign Macro” to assign the macro code to the button. To create a shortcut key, go to the “Macros” tab in the VBA developer window, select the macro from the list, and click the “Options” button. Then, enter a shortcut key in the “Shortcut key” field.

Note: If you are running the macro for the first time, you may need to enable macros in Excel by going to the “File” tab and selecting “Options.” Under the “Trust Center” settings, click the “Trust Center Settings” button and go to the “Macro Settings” tab. Select “Enable all macros” and click “OK.”

Copy Below VBA Macro Code for Highlight Greater than Values
Sub HighlightGreaterThanValues()
Dim i As Integer
i = InputBox("Enter Greater Than Value", "Enter Value")
Selection.FormatConditions.Delete
Selection.FormatConditions.Add Type:=xlCellValue, _
Operator:=xlGreater, Formula1:=i
Selection.FormatConditions(Selection.FormatConditions.Count).S
tFirstPriority
With Selection.FormatConditions(1)
.Font.Color = RGB(0, 0, 0)
.Interior.Color = RGB(31, 218, 154)
End With
End Sub

Once you run this code it will ask you for the value from which you want to highlight all greater values.

RECENTLY UPLOADED EXCEL TEMPLATES

meeting-sign-in-sheet

Meeting Attendance Report

Do you need Meeting Attendance Report or meeting printable sign in sheet for your office, class, seminar, or open house? …

Download Now
Attendance record

Attendance Record

Need help to keep an attendance record for your meetings, club, church, or Sunday School class? This free attendance record …

Download Now
Software Inventory Tracking

Software Inventory Tracking

Tracking software inventory and performing other computer inventory tasks can be a headache for any IT professional. The location and …

Download Now
yearly class attendance

Yearly class attendance

The new student yearly class attendance template combines multiple monthly student attendance forms into a single workbook. Certainly with a …

Download Now
work-order-template

Work order

This free work order form is professional, simple, easy to use, and fully customizable spreadsheet template. Use all of them …

Download Now
Financial dashboard in excel

Financial Dashboard

Download Free Financial Dashboard in Excel: A Powerful Tool for Revenue Insights Welcome to the fascinating world of Excel, where …

Download Now
%d bloggers like this: