Friday, August 12, 2016

How to use the TAN Function (WS,VBA)

Description

The Microsoft Excel TAN function returns the tangent of an angle.

Syntax

The syntax for the TAN function in Microsoft Excel is:
TAN( number )

Parameters or Arguments

number
A numeric value used to calculate the tangent 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 TAN function examples and explore how to use the TAN function as a worksheet function in Microsoft Excel:
Microsoft Excel
Based on the Excel spreadsheet above, the following TAN examples would return:
=TAN(A1)
Result: -0.142546543

=TAN(A2)
Result: -1.885641878

=TAN(A3)
Result: 1.885641878

=TAN(2)
Result: -2.185039863

Example (as VBA Function)

The TAN function can also be used in VBA code in Microsoft Excel.
Let's look at some Excel TAN function examples and explore how to use the TAN function in Excel VBA code:
Dim LNumber As Double

LNumber = Tan(2)
In this example, the variable called LNumber would now contain the value of -2.185039863.

No comments:

Post a Comment