Skip to main content

DivideNumberBy

Type

statement

Summary

Divides Target by Value.

Syntax

divide <Target> by <Value>

Description

Divides the number Target by Value.

note

It is a syntax error if Target does not evaluate to a variable.

Parameters

NameTypeDescription

Target

An expression that evaluates to a numeric variable.

Value

An expression that evaluates to a number.

Examples

variable tVar
put 3 into tVar
divide tVar by 2 -- tVar contains 1.5
Thank you for your feedback!

Was this page helpful?