Operators supported in computed measure expressions
Table 4-4 lists the operators you can use when you write an expression for a computed measure.
IF([ProductName] = "1919 Ford Falcon", "Discontinued Item", [ProductName])
IF([Total] > 5000, [Total]*15%, [Total]*10%)
IF([SalePrice] < [MSRP] , "Below MSRP" , "Above MSRP")
IF([Total] >= 5000, [Total]*15% , [Total]*10%)
Test if one value is less than or equal to another value.
IF([SalePrice] <= [MSRP] , "Below or equal to MSRP" , "Above MSRP")
IF([Country] <> "USA", "Imported product", "Domestic product")
IF(([Gender] = "Male" AND [Salary] >= 150000 AND [Age] < 50), "Match found", "No match")
Test if any one of multiple conditions is true.
IF(([City] = "Boston") OR ([City] = "San Francisco"), "U.S." , "Europe and Asia")

Additional Links:

Copyright Actuate Corporation 2012