Method

Pow


Description

Returns the value specified raised to the power specified.

Usage

result = Pow(value, power)

Part

Type

Description

result

Double

value raised to power.

value

Double

The value you want to raised to power.

power

Double

The power that value is raised to.

Sample code

This example uses the Pow function to return four raised to the power of seven.

Var d As Double
d = Pow(4, 7) ' returns 16384

Compatibility

Project Types

All

Operating Systems

All

See also

^ operator.