Public Function DivideEqualFn( _
ByRef rLeft As Variant _
, ByVal vRight As Variant _
) As Variant Assuming
Dim dblValue As Double
dblValue = 2.5
for example
DivideEqualFn(dblValue, 2) = 1.25
leaves
dblValue = 1.25See also: DivideEqual Subroutine
Div Function
TimesEqualFn Function
PlusEqualFn Function
MinusEqualFn FunctionDefinition (Visual Basic): DivideEqualFn = rLeft / vRight
rLeft = rLeft / vRightDefinition (C): #define DivideEqualFn(rLeft, vRight) (rLeft /= vRight)rLeft: Numeric or date value which is divided by vRight. The result of the division is assigned back into the variable passed via rLeft (unless that value happens to be passed-by-value) and the result is also returned.
Copyright 1996-1999 Entisoft
Entisoft Tools is a trademark of Entisoft.