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.
SAP BusinessObjects http://www.sap.com/sapbusinessobjects/ Support services http://service.sap.com/bosap-support/ Product Documentation on the Web http://help.sap.com/ |