Skip to main content

MULTIPLY

Multiplies two values together.

Syntax

byte? MULTIPLY(byte? a, byte? b)
short? MULTIPLY(short? a, short? b)
int? MULTIPLY(int? a, int? b)
long? MULTIPLY(long? a, long? b)
Single? MULTIPLY(Single? a, Single? b)
double? MULTIPLY(double? a, double? b)
double? MULTIPLY(double? a, decimal? b)
decimal? MULTIPLY(decimal? a, double? b)
decimal? MULTIPLY(decimal? a, decimal? b)

Example

MULTIPLY(10,2)

Will return '20'.