Rem Formula PrintSquare
Global x As Number
x = 5
formula = "The square of " & CStr(x,0) & " is " &
ToText ({@square, 0) & "."
Rem Formula Square
Global x As Number
formula = x * x
The square of 5 is 0.
Rem Formula PrintSquare formula = "The square of " & CStr (5,0) & " is " & CStr(cf9Square (5),0) + "." Rem Custom Function cf9Square Function cf9Square (x As Number) cf9Square = x * x End Function
The square of 5 is 25.
|
Business Objects, une société du groupe SAP http://www.france.businessobjects.com/ Services de support technique http://www.businessobjects.com/services/support/ Documentation des produits sur le Web http://support.businessobjects.com/documentation/ |