View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Chip Pearson Chip Pearson is offline
external usenet poster
 
Posts: 7,247
Default adding subtracting angles/degrees

Jimmy,

Try the following functions

Function AddDegrees(X As Double, Y As Double) As Double
AddDegrees = (X + Y) Mod 360
End Function
Function SubtractDegrees(X As Double, Y As Double) As Double
SubtractDegrees = (X - Y) - ((X - Y < 0) * 360)
End Function

You can use a custom number format of "000" to preserve the
leading zero.


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com



"Jimmy" wrote in message
...
Hi guys/gals,

I am trying to figure out how to add and subtract two degrees. I

am
speaking about compass/directional degrees (or angles if you

prefer).

I need to be able to subtract lets say 45 degrees from a

heading/angle
of 020 and arrive at the appropriate result. In this case 335.


Also how can I display the result or format the field to display

a
leading "zero" ie 020.

Thanks in advance