> im trying to write tan^-1 in excel
> but keeps running into problems.
> anyone know how to do this?
if you have degrees of an angle in A1, then try:
=TAN(RADIANS(A1))^-1
or easier:
=COT(RADIANS(A1))
Regards
Claus B.
--
Windows10
Office 2016
dpb
unread,
Dec 18, 2019, 3:43:45 PM12/18/19
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to
> hi
> im trying to write tan^-1 in excel
...
As most programming languages the function name is ATAN(). NB: its
argument is in radians, not degrees.
--
dpb
unread,
Dec 18, 2019, 5:42:30 PM12/18/19
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to
On 12/18/2019 1:29 PM, jonc...@gmail.com wrote:
> hi
> im trying to write tan^-1 in excel
> but keeps running into problems.
> anyone know how to do this?
Function is ATAN() with argument in radians (not degrees)