Oracle Analytics Cloud and Server

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?

Accepted answer
25
Views
3
Comments

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

  • Ram-Oracle
    Ram-Oracle Rank 6 - Analytics Lead
    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.

Answers