#1   Report Post  
TC
 
Posts: n/a
Default wind direction

Is there any way of displaying a cell containing a number 0-360 as a
directional indicator (an arrow or something like that). In need to chart
wind speed and direction against some other data nd I can't think how to do
it. (using Excel97)

Thanks


--
Tobit Curteis
________________________
Cambridge
UK


  #2   Report Post  
Bill Martin -- (Remove NOSPAM from address)
 
Posts: n/a
Default

TC wrote:
Is there any way of displaying a cell containing a number 0-360 as a
directional indicator (an arrow or something like that). In need to chart
wind speed and direction against some other data nd I can't think how to do
it. (using Excel97)

Thanks



-------------

Well a brute force approach would be to create your own symbol font. One where
A is an up arrow, B is an arrow pointing 1 degree to the right, etc.

Someone here will probably have a more elegant solution.

Bill
  #3   Report Post  
Dana DeLouis
 
Posts: n/a
Default

Would something like this work as a demo? You may have to have an event
macro fire to set this up correctly.

Sub Demo()
Dim angle

[A1] = Chr(223)
[A1].Font.Name = "Wingdings"

With Range("A1")
For angle = -90 To 90 Step 1
.HorizontalAlignment = xlCenter
.Orientation = angle
Next
[A1] = Chr(224)
For angle = -90 To 90 Step 1
.HorizontalAlignment = xlCenter
.Orientation = angle
Next
End With
End Sub


--
Dana DeLouis
Win XP & Office 2003


"TC" wrote in message
...
Is there any way of displaying a cell containing a number 0-360 as a
directional indicator (an arrow or something like that). In need to chart
wind speed and direction against some other data nd I can't think how to
do it. (using Excel97)

Thanks


--
Tobit Curteis
________________________
Cambridge
UK



  #4   Report Post  
Bill Martin -- (Remove NOSPAM from address)
 
Posts: n/a
Default

Personally, I think that's way cool.

Bill
-------------------------
Dana DeLouis wrote:
Would something like this work as a demo? You may have to have an event
macro fire to set this up correctly.

Sub Demo()
Dim angle

[A1] = Chr(223)
[A1].Font.Name = "Wingdings"

With Range("A1")
For angle = -90 To 90 Step 1
.HorizontalAlignment = xlCenter
.Orientation = angle
Next
[A1] = Chr(224)
For angle = -90 To 90 Step 1
.HorizontalAlignment = xlCenter
.Orientation = angle
Next
End With
End Sub


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Control cursor direction in highlighted group of cells/Page setup George Tung Excel Worksheet Functions 3 June 13th 05 09:21 PM
How do I change my text direction to vertical on EXcell? bibi New Users to Excel 2 June 1st 05 09:46 PM
percentage of wind power dan Excel Worksheet Functions 2 April 11th 05 08:04 PM
how do i plot a rose diagram to show frequency of wind direction kathryn Charts and Charting in Excel 1 March 15th 05 09:42 PM
How do I make a 3 d graph using depth in Ft., a N-S direction in . psmx401 Charts and Charting in Excel 1 March 7th 05 07:33 PM


All times are GMT +1. The time now is 11:53 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"