i have the following data in one sheet:
x y offset
1 1 2
1 2 2
1 3 3
1 4 4
2 1 5
2 2 6
2 3 2
2 4 2
3 1 3
3 2 4
3 3 5
3 4 6
4 1 8
4 2 7
4 3 0
4 4 9
and i want to display the offsets in a 3 dimensional way using an excel macro. In other words, here x and y are the coordinates, offsets are the z values. I just want to get a surface/columns over the xy plane. I searched awhile in the internet, but don’t find much useful stuffs. Could you give me any hints?
Thanks in advance,
John
If you reformat your data, you will be able to use a regular Excel diagram type (3D columns) to graph the data:
VBA code:
You would have to set your range accordingly.