how to get the opposite value with (atan formula)

aayat

New Member
Joined
Nov 27, 2003
Messages
34
Hi i am using the following formula :

x1 =1.8072 formula is =atan(x1-x2)*180/pi() = -1.08276
x2 = 1.8261
x3= 1.8504
x4= 1.8470

but now if i have result say -0.30 and need to find at what point x1 value will be.

Manually i know it will be 1.8208. But how can i change the formula to arrive at this number.

Thanks for the help :o

aayat
 

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type
This will give you the value of x1:
Code:
=TAN(-0.3*PI()/180)+x2

just change -0.3 by the address of the cell where is the result..
 
Upvote 0
Isn't it just a matter of simplifying that formula for x1 ?

Code:
y = ATAN(x1 - x2) * 180 / PI()

y * PI() / 180 = ATAN(x1 - x2)

TAN(y * PI() / 180) = x1 - x2

x1 = TAN(y * PI() / 180) + x2

replace y by -0.30 and you'll get your answer.
 
Upvote 0

Forum statistics

Threads
1,223,921
Messages
6,175,379
Members
452,639
Latest member
RMH2024

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