hlep:Question on surface plot

ushank

New Member
Joined
Sep 27, 2006
Messages
3
Hello All,

I am a newbee on this board.
I have to generate a matrix and plot data in surface plot and export it.
An element of matrix is obtained by the product of the corresponding row and column. For example 5th element in first row is 1*5=5 or 7th element in second row is 2*7

I tried to generate the matrix and given below was my best effort.
I don't have any clue abt how to get the surface plot.

Sub Surfaceplot()
Dim matrix(1 To 15, 1 To 15) As Integer
Dim i, j As Integer
For i = 1 To 15
For j = 1 To 15
matrix(i, j) = i * j
Next j
Next i
End Sub

Thanks in advance
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
You have this nice grid, and you're using VBA to make a matrix?

In A2:A16 and in B1:P1 enter 1 through 15. Select B2:P16, with B2 the active cell, and enter this formula

=$A2*B$1

then hold CTRL and press ENTER. Voila, there's your matrix of i*j.

Select this range, and use the Chart Wizard to create a surface chart.

Here's more info on surface and contour plots:

http://pubs.logicalexpressions.com/Pub0009/LPMArticle.asp?ID=447
 
Upvote 0
Hello Jon,

Thanks a lot for your reply.
But I have to accomplish the task of obtaining the surface plot using a macro.
Any help in this regard is appreciated.
 
Upvote 0
So turn on the macro recorder while you create such a plot, then adjust the recorded code.
 
Upvote 0

Forum statistics

Threads
1,215,222
Messages
6,123,716
Members
449,116
Latest member
Aaagu

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top