Categories
- All Categories
- 15 Oracle Analytics Sharing Center
- 14 Oracle Analytics Lounge
- 211 Oracle Analytics News
- 42 Oracle Analytics Videos
- 15.7K Oracle Analytics Forums
- 6.1K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 78 Oracle Analytics Trainings
- 14 Oracle Analytics Data Visualizations Challenge
- Find Partners
- For Partners
How can I implement Tableau’s `CONTAINS` function in Oracle Analytics Cloud?

How can I replicate the CONTAINS
function from Tableau in OAC for text field searches?
To check if data in a field(column) contains the text that we are trying to find?
Best Answer
-
@Lokesh Obhilineni-Oracle Hi Lokesh, Please pull calculated column and use case when statements along with like operator.
example: case when New to clinic indicator like '%use your text keyword%' then <yes>
else <No> End
please see if it helps.
0
Answers
-
Please you may refer for case when statements usage
There are case(if) ,case(switch) statements which you may explore
0 -
That worked perfectly
Thank you!
0