Public Function CubeCalc( _ Optional ByVal vArea As Variant _ , Optional ByVal vDiagonal As Variant _ , Optional ByVal vSide As Variant _ , Optional ByVal vVolume As Variant _ ) As Variant
CubeCalc(Null, Null, 10, "CALC") = 1000 CubeCalc(vSide:=10, vVolume:="CALC") = 1000 CubeCalc(vDiagonal:=10, vVolume:="CALC") = 192.450089729875 CubeCalc(vDiagonal:=10, vSide:="CALC") = 5.77350269189626See also:
SquareCalc FunctionSummary: One of the arguments should contain a numeric value--the given value for that property. Pass the word "CALC" to the argument whose value is to be calculated and returned by this function. The other arguments should be missing or Null or non-numeric. Function returns Null if none of the arguments can be fixed up to a real or complex number (as defined by the IsComplex function). Otherwise, the function returns the value of the property whose argument was passed the word "CALC".
Copyright 1996-1999 Entisoft
Entisoft Tools is a trademark of Entisoft.