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, an SAP company http://japan.businessobjects.com/ サポート サービス http://japan.businessobjects.com/support/ Web 上の製品マニュアル http://support.businessobjects.com/documentation/ |