Divide

Overview

Returns the result of dividing the first argument by the second argument.

Syntax

Divide(1, 2)

Function Properties

Ordinal Type Description
1 numeric Required Dividend value
2 numeric Required Divisor value, used to divide the dividend value

Usage

Given @abc=100 and @def=5

%%=Divide(@abc,@def)=%%

The system returns:

20
Last Updated: Jun 8, 2021