Difference between revisions of "MOD()"

From Lianjapedia
Jump to: navigation, search
m (1 revision)
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
==Purpose==
 
==Purpose==
 
Function to return division remainder
 
Function to return division remainder
 
  
 
==Syntax==
 
==Syntax==
 
MOD(<expN1>,<expN2>)
 
MOD(<expN1>,<expN2>)
 
  
 
==See Also==
 
==See Also==
 
[[IIF()]], [[MAX()]], [[MIN()]]
 
[[IIF()]], [[MAX()]], [[MIN()]]
 
  
 
==Description==
 
==Description==
 
The MOD() returns the remainder after <expN1> has been divided by <expN2>.
 
The MOD() returns the remainder after <expN1> has been divided by <expN2>.
 
  
 
==Example==
 
==Example==
Line 21: Line 17:
 
</code>
 
</code>
  
 
==Products==
 
Recital Server, Recital
 
 
[[Category:Documentation]]
 
[[Category:Documentation]]
 
[[Category:Functions]]
 
[[Category:Functions]]
[[Category:Numeric Data]]
 
 
[[Category:Numeric Data Functions]]
 
[[Category:Numeric Data Functions]]

Latest revision as of 07:26, 23 February 2021

Purpose

Function to return division remainder

Syntax

MOD(<expN1>,<expN2>)

See Also

IIF(), MAX(), MIN()

Description

The MOD() returns the remainder after <expN1> has been divided by <expN2>.

Example

? mod(7,3)
       1.00