Categories
Welcome to the Oracle Analytics Community: Please complete your User Profile and upload your Profile Picture
How can I implement Tableau’s `CONTAINS` function in Oracle Analytics Cloud?

Lokesh Obhilineni-Oracle
Rank 3 - Community Apprentice
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?
0
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