Making Wind Rose in Excel!!

ckmoied

Board Regular
Joined
Oct 13, 2002
Messages
154
Hi all,

I have some data on wind speed and wind direction, in Excel worksheets.

I want to develop the wind roses for this data using excel charts. Does anybody have an idea about how to do it.

Have a nice day.
 

Excel Facts

Lock one reference in a formula
Need 1 part of a formula to always point to the same range? use $ signs: $V$2:$Z$99 will always point to V2:Z99, even after copying
Suppose follwing data is in col A. where 0 or 360 represent north direction. 90=East, 180=South, and 270=West. Now the data once plotted must appear as a wind rose.

There are softwares which can produce wind rose charts. However I want to generate them using Excel Charts.

102.24
109.55
111.49
149.39
144.53
134.59
147.49
96.61
100.97
125.51
101.47
118.97
115.07
93.06
99.24
108.5
104.32
205.33
310.13
327.73
348.11
350.7
349.32
334.41
396.88
395.33
352.37
258.25
 
Upvote 0
Maybe this can get you a bit on the way...?
As I could not manage with chart I put your directions in column A (but changed so no one is more than 360 degrees) and put some wind speeds in column B
and run this:
Code:
Sub XXX()
     
    a = 2
    Do While Cells(a, 1) <> ""
    ActiveSheet.Shapes.AddShape(msoShapeUpArrow, 177#, 104, 20, 10). _
        Select
    Selection.ShapeRange.IncrementRotation Cells(a, 1)
    Selection.ShapeRange.ScaleHeight Cells(a, 2), msoFalse, msoScaleFromBottomRight
    a = a + 1
    Loop
    
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,593
Messages
6,125,715
Members
449,254
Latest member
Eva146

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