Percentage operator (%)

Value%

Value

Number or { Number }

The number to divide by 100.

Returns

Number or { Number }

The given number divided by 100.

Divides the number by 100. For the modulo operation (which returns the remainder after division), refer to the MOD function.

Examples

100 * 4%100 * 4%

Returns 4, and is equivalent to 100 * 0.04100 * 0,04.

{ 100, 200, 400 }%{ 100; 200; 400 }%

Returns the array { 1, 2, 4 }{ 1; 2; 4 }, as each array element is divided by 100. The formula is equivalent to { 100%, 200%, 400% }{ 100%; 200%; 400% }.