Math
Exp()
Returns a number containing the base of a natural logarithm (e) raised to the specified power. The return value is a double type.
- Read more about Exp()
- Log in or register to post comments
Cos()
Calculates the cosine of a specified angle. It returns a double value.
- Read more about Cos()
- Log in or register to post comments
Atn()
Calculates the value containing the angle whose tangent is the specified number. The result is a double type. The example below calculates pi.
- Read more about Atn()
- Log in or register to post comments
Abs()
Returns the absolute value of a specified number.
- Read more about Abs()
- 2 comments
- Log in or register to post comments
Logical Operators
VBA has six logical operators:
- Read more about Logical Operators
- Log in or register to post comments
Comparison Operators
The comparison operators are used to perform comparisons between expressions. A comparison expression is actually a logical expression, evaluating to True or False depending on the data and operator used.
= Equal to
> Greater than
< Less than
>= Greater than or equal to
<= Less than or equal to
<> Not equal to
- Read more about Comparison Operators
- Log in or register to post comments