Skip to content
Advertisement

How to concatenate a conditional field and remove the same value

I am trying to create a column with a case statement, then concatenate the column. Here is an example code.

Basically, the Action_with_no_date will display the concatenation of values in Action with '**' string added to the values where Date is null for each ID

After I did this, I found an edge case.

If there is the same Action (i.e. play) taken for one ID, and if one action has date and the other one doesn’t, then the output will have one play and one play** for the ID

However, I want this to display just one play with **. Below is the example data for ID = 1

and expected result for the ID

How should I handle this?

Advertisement

Answer

You can calculate ** suffix if there is any row with null per id and action using analytic max() with case expression. Then concatenate suffix with action.

Demo:

Result:

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement