Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Business Objects

Status
Not open for further replies.

GoodDwayne

Programmer
Aug 10, 2012
16
0
0
US
I have a report in Business Objetcs and I need to create a formula. The field name is called WO Priority. I need to create a column with the field to give me the meaning of the WO priority.

I need a formula for this. If the WO Priority = 1 then Extreme
If the WO Priority = 3 then Normal
If the WO Priority = 2 then Undecided
 
So far I have written =If([WO Priority])=3 Then "Normal"

Do I need to add a comma or semi colon to add to the formula. For example:

=If([WO Priority])=3 Then "Normal",=If([WO Priority])=1 Then "Extreme" or

=If([WO Priority])=3 Then "Normal";=If([WO Priority])=1 Then "Extreme
 
It looks like you're working with a Webi report, not Crystal. This forum is for Crystal Reports. For Webi questions, you should go here:
Having said that, here's the formula you're looking for:

=If([WO Priority] = 1; "Extreme"; If([WO Priority] = 2; "Undecided"; "Normal"))

-Dell

DecisionFirst Technologies - Six-time SAP BusinessObjects Solution Partner of the Year
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top