SIN , COS , TAN VALUES NOT CORRECT.

  • Thread starter HARSHAWARDHAN. S .SHASTRI
  • Start date
H

HARSHAWARDHAN. S .SHASTRI

I have one form in which I have added 2 text boxes. In text box 1 I am
putting angle values in degrees and in text box 2 I am looking for sin value
.. Which formula should
I write in change event of textbox1 so that i will get sin value.
 
P

Pete_UK

Don't forget that the trigonometrical functions in Excel expect angles
to be in radians - check it out in Excel Help.

Hope this helps.

Pete
 
S

Shane Devenshire

Hi,

Use:
SIN(angle)
COS(angle)
TAN(angle)

All of these work in VBA as written above, however, they will fail if
written as

WorksheetFunction.Sin(angle)

or if the angle is in degrees not radians then convert to radians using

WorksheetFunction.Radians (22.5)

So your formulas might look like this

SIN(WorksheetFunction.Radians (22.5))

If this helps, please click the Yes button

Cheers,
Shane Devenshire
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top