Selecting Diagonal Range

,

This post will guide you how to select a diagonal range in excel. How do I use diagonal cells to select a range in excel. How to create a new excel Macro code to select a diagonal range in the sheet.

Select Diagonal Cells


Assuming that you have a list of data, and you can easily select multiple cells in the table and do you know how to select select the diagonal range of cells in the list. To select diagonal cells in excel, you can create an Excel VBA Macro to achieve the result. Just do the following steps:

#1 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

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

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

convert column number to letter3

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

select diagnoal range 112

Sub selectDiagonalRange()
    Set myRange = ActiveCell
    If myRange Is Nothing Then Exit Sub
        myCount = Val(InputBox("Please type a cell number that you want to be selected in diagonal range", "select diagonal range"))
    If myCount = 0 Then Exit Sub

    For myLong = 1 To (myCount - 1)
        Set myRange = Union(myRange, ActiveCell.Offset(myLong, myLong))
    Next myLong
    myRange.Select
End Sub

#5 Type the number that you want to select diagonal cells.

select diagnoal range 111
#6 back to the current worksheet, then run the above excel macro. Click Run button.

selecting diagonal range4

#7 lets see the result:

selecting diagonal range3

Leave a Reply