Categories
- All Categories
- Oracle Analytics and AI Learning Hub
- 53 Oracle Analytics and AI Sharing Center
- 25 Oracle Analytics and AI Lounge
- 306 Oracle Analytics and AI News
- 57 Oracle Analytics and AI Videos
- 16.4K Oracle Analytics and AI Forums
- 6.6K Oracle Analytics and AI Labs
- Oracle Analytics and AI User Groups
- 118 Oracle Analytics and AI Trainings
- 22 Oracle Analytics and AI Challenge
- Find Partners
- For Partners
Welcome to the Oracle Analytics Community: Please complete your User Profile and upload your Profile Picture
Sales Region Value auto-fill
User_YABJ5
Rank 1 - Community Starter
Hi!
I am trying to mark all regions except one (Southwest) as inactive (value = 3) automatically using a measure. This measure should look at the Sales region and if it is not "Southwest" it should mark it as 3.I did it manually and it worked but now I need it make it automated. I tried this formula : if(" Sales Region" <> 'Southwest', '3', null). The system tells me that the expression is correct but when I try to open a table with this measure it shows me an error.
I would appreciate any advice on this issue!
Tagged:
0
Answers
-
Hi @User_YABJ5,
Welcome to the Oracle Analytics & AI Community!
Can you please try a CASE Statement like following to replace the value?
CASE
WHEN "Sales Region" <> 'Southwest' THEN '3'
ELSE ''
ENDHope this help.
Thank you.
0
