Be the first user to complete this post
|
Add to List |
Excel- VBA/Formula: Math Functions – Sin()
Description:
The Sin function in MS excel returns the sine angle of a number.
Format:
Sin(number)
Arguments:
- Number
- Mandatory
- Type: Number
- Number for which sine angle needs to be calculated.
Example:
Function getSine() Dim number1 Dim number2 number1 = 90 number2 = 100 MsgBox "The Sine angles are " & Sin(number1) & " and " & Sin(number2) End Function
Using Sin() as Excel Formula