//If example 5 Local CurrencyVar tax := 0; Local CurrencyVar income := {Employee.Salary}; Local StringVar message := ""; If income < 8000 Then ( message := "no"; tax := 0 ) Else If income >= 8000 And income < 20000 Then ( message := "lowest"; tax := (income - 8000)*0.20 ) Else If income >= 20000 And income < 35000 Then ( message := "middle"; tax := (20000 - 8000)*0.20 + (income - 20000)*0.29 ) Else ( message := "highest"; tax := (20000 - 8000)*0.20 + (35000 - 20000)*0.29 + (income - 35000)*0.40 ); //Use 2 decimal places and the comma as a //thousands separator Local StringVar taxStr := CStr (tax, 2, ","); "You are in the " & message & " tax bracket. " & "Your estimated tax is " & taxStr & "."
SAP BusinessObjects http://www.sap.com/sapbusinessobjects/ Support services http://service.sap.com/bosap-support/ Product Documentation on the Web http://help.sap.com/ |