Function for adding angles in polar coordinate

Aspharagus

New Member
Joined
Aug 18, 2024
Messages
9
Office Version
  1. 365
Platform
  1. Windows
Hello Everyone,

I am looking for a function which adds 2 angles in polar coordinates.
For example : angle 270 + Angle 180 = angle 90 on polar coordinate considering 360 degree rotation.

Thank you.
 

Excel Facts

How to show all formulas in Excel?
Press Ctrl+` to show all formulas. Press it again to toggle back to numbers. The grave accent is often under the tilde on US keyboards.
If 270 is in cell A1, and 180 is in cell B1, then how about this formula?
Excel Formula:
=MOD(A1+B1,360)
 
Upvote 0
Solution
You are welcome.
Glad I was able to help!

Note the only caveat is if you had values that added up to 360 like 270 and 90, it will return 0 and not 360.
If you would prefer it to return 360, you could use this variation:
Excel Formula:
=LET(x,MOD(A1+B1,360),IF(x=0,360,x))
 
Upvote 0

Forum statistics

Threads
1,222,902
Messages
6,168,938
Members
452,227
Latest member
sam1121

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