Description
The Microsoft Excel SIN function returns the sine of an angle.
Syntax
The syntax for the SIN function in Microsoft Excel is:
SIN( number )
Parameters or Arguments
- number
- A numeric value used to calculate the sine of an angle.
Applies To
- Excel 2016, Excel 2013, Excel 2011 for Mac, Excel 2010, Excel 2007, Excel 2003, Excel XP, Excel 2000
Type of Function
- Worksheet function (WS)
- VBA function (VBA)
Example (as Worksheet Function)
Let's look at some Excel SIN function examples and explore how to use the SIN function as a worksheet function in Microsoft Excel:
Based on the Excel spreadsheet above, the following SIN examples would return:
=SIN(A1) Result: 0.141120008 =SIN(A2) Result: -0.883454656 =SIN(A3) Result: 0.883454656 =SIN(2) Result: 0.909297427
Example (as VBA Function)
The SIN function can also be used in VBA code in Microsoft Excel.
Let's look at some Excel SIN function examples and explore how to use the SIN function in Excel VBA code:
Dim LNumber As Double LNumber = Sin(2)
In this example, the variable called LNumber would now contain the value of 0.909297427.