Excel Macro code to Highlight Alternate Rows in the Selection

How to Highlight Alternate Rows in the Selection 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 Alternate Rows in the Selection
Sub highlightAlternateRows()
Dim rng As Range
For Each rng In Selection.Rows
If rng.Row Mod 2 = 1 Then
rng.Style = "20% -Accent1"
rng.Value = rng ^ (1 / 3)
Else
End If
Next rng
End Sub

By highlighting alternate rows you can make your data easily readable, and for this, you can use below VBA code. It will simply highlight every alternate row in selected range.

RECENTLY UPLOADED EXCEL TEMPLATES

Addition Practice Sheet

Addition Practice Sheet

Basic Addition Practice Sheet is ready-to-use excel template which helps a student to practice addition problems. Purpose of Addition Practice …

Download Now
Cube Root Practice Sheet

Cube Root Practice Sheet

Cube Root Practice Sheet is a simple Template that helps the students to learn cube roots of given whole numbers …

Download Now
MCQ-Test-Checking-Sheet-for-tutors

MCQ Test checking sheet

MCQ Test Checking Sheet is an excel sheet which enables you to check the MCQ Test in less than an …

Download Now
MCQ-Test-Sheet

MCQ Test Sheet

MCQ Test Sheet is a ready template to conduct an MCQ Test with ease and swiftness. Conduct a test and …

Download Now
Checkbook-Register

Checkbook in Register

Checkbook in Register Template is a ready-to-use template in Excel to track and reconcile your personal or business bank accounts. …

Download Now
Depreciation-Calculator

Depreciation Calculator template

Depreciation Calculator is an excel template to calculate Straight-Line as well as Diminishing Balance Depreciation on Tangible/Fixed Assets. The template …

Download Now