Categories
- All Categories
- 15 Oracle Analytics Sharing Center
- 16 Oracle Analytics Lounge
- 216 Oracle Analytics News
- 43 Oracle Analytics Videos
- 15.7K Oracle Analytics Forums
- 6.1K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 79 Oracle Analytics Trainings
- 15 Oracle Analytics Data Visualizations Challenge
- Find Partners
- For Partners
Need to add the logic in OTBI Report

Please apply logic to the "Ethnicity" field: If multiple selections include Hispanic, only populate Hispanic in the ethnicity field, if multiple selections do not include Hispanic, populate Two or More in the ethnicity field.
Answers
-
Have you tried anything ? Looked at the Case statement?
case when Ethnicity like '%Hispanic%' then 'Hispanic' else Ethnicity end
0 -
@User_WF2X0 - This community is specifically dedicated to FDI/FAW queries. For OTBI-related discussions, we have a dedicated community forum. Please use the following forum for OTBI-related queries in the future:
OTBI Community Forum@John Hung-Oracle
Could you kindly assist in moving this thread to the OTBI community?Thank you!
0 -
CASE WHEN "Worker"."Employee Ethnicity" = 'I am Hispanic or Latino.' THEN 'Hispanic' ELSE 'Two or more races' END
used this condition still it was pulling duplicates0