Thread
:
adding subtracting angles/degrees
View Single Post
#
2
Posted to microsoft.public.excel.programming
Chip Pearson
external usenet poster
Posts: 7,247
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
Reply With Quote
Chip Pearson
View Public Profile
Find all posts by Chip Pearson