HELP! formula for OBIEE

ariel20029

Board Regular
Joined
Jun 20, 2013
Messages
97
Hi all,
I have tried ( I am very new to this) to write a CASE statement where if the product Family= custom and unit list price =0 return NO
but the tricky part is everything else with a list price of 0 needs to be YES else NO.

No matter how I write the statement the list price of 0 is overriding the product family.



I tried and or..anything I could think of..
any help would be appreciated.

Basically our custom items do not have a list price so I need to keep them in the population and manually update the list price, but anything else that has a list price of 0 return Yes.

Sharon
 

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
You don't have a lot of information here, but typically for multi-conditions if clauses you would do something along the lines of...

SWITCH(
TRUE(),
[Product Family] = "custom" && [Unit List Price] = 0, "No",
[Unit List Price] = 0, "Yes",
"No"
)
 
Upvote 0
Hi thank you, I had to modify a little as the syntax was slightly different but this is exactly what I needed... THANK YOU!!!
Sharon
 
Upvote 0

Forum statistics

Threads
1,215,490
Messages
6,125,096
Members
449,205
Latest member
ralemanygarcia

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top