VBA for Excel 2007 tutorial-2D arrays to print matrix

VBA 2D arrays to print a matrix


In this example, We use VBA two-dimensional array to print a matrix as shown below:

0 1 1 1 1 1
-1 0 1 1 1 1
-1 -1 0 1 1 1
-1 -1 -1 0 1 1
-1 -1 -1 -1 0 1
-1 -1 -1 -1 -1 0



The diagonal of the matrix fills with 0s. The lower-left side of the matrix fill with -1 and the higher-right side fills with 1.

To the run the example program, you will need one Form and one CommandButton.



VBA for Excel: using VBA 2D array to fill matrix
VBA code for this example:


Option Explicit
Private Sub CommandButton1_Click()
    Dim matrix(5, 5) As Integer
    Dim row, col As Integer
    'fill values in the matrix
    For row = 0 To 5
        For col = 0 To 5
            If row = col Then ' if row=col=> fill with 0s
                matrix(row, col) = 0 'if row>col=>fill with-1s
            ElseIf row > col Then 'else=> fill with 1s
                matrix(row, col) = -1
            Else: matrix(row, col) = 1
            End If
        Next
    Next
    'display the matrix in excel sheet
    For row = 0 To 5
        For col = 0 To 5
            Cells(row + 1, col + 1) = matrix(row, col)
        Next
    Next
   
End Sub



comment

Posted comments

Patrick:

Good explanations. Thank you :)

03-22-2013

Dara:

Global and local variables declaration example:
http://www.worldbestlearningcenter.com/tips/Global-variables-in-vba.htm

02-23-2013

ann:

thanks for sharing your knowledge it helps me a lot.

02-11-2013

Tamilan:

Pls post some examples for declaring and calling variables (local and global)

02-09-2013

M.somjate:

Thanks for example color code.

02-08-2013

G G Shah:

Heartly Thanks.God bless you.

01-18-2013

sek sam:

I like this website very much.
It has a lot of helpful helpful materials to learn excel programming.

01-01-2013

limocky:

useful ms access examples...
good web site to to learn access from scratch.

01-01-2013

bakery:

Thank for useful VBA example code...

12-27-2012

prasat:

Thank u for useful website..

11-03-2012

zal:

Thank for really helpful posts

10-28-2012

brasha:

Useful VBA examples for Excel. I really need them.

10-25-2012


...................................................................................................................................Home | Forum | About | Contact
This website intents to provide free and high quality tutorials, examples, exercises and solutions, questions and answers of programming and scripting languages:
C, C++, C#, Java, VB.NET, Python, VBA,PHP & Mysql, SQL, JSP, ASP.NET,HTML, CSS, JQuery, JavaScript and other applications such as MS Excel, MS Access, and MS Word.
However, we don't guarantee all things of the web are accurate. If you find any error, please report it then we will take actions to correct it as soon as possible.
Copyright @ 2011-2013 worldbestlearningcenter. All Rights Reserved.
Computer-Wbest
Tips
Download
Related Posts