I want to create a 3*2 (6 lines) for percentiles by their engagement status.

I want to create a line chart with dates on X axis and 6 lines on Y axis. Is this possible with existing dataset?

Best Answer

  • GrantSmith
    GrantSmith Coach
    Answer ✓

    You can create separate beast modes for your different values and drag each of them on your graph

      CASE WHEN `engagement_status` = 'ES_user' THEN `value` END
    
    **Was this post helpful? Click Agree or Like below**
    **Did this solve your problem? Accept it as a solution!**

Answers

  • GrantSmith
    GrantSmith Coach
    Answer ✓

    You can create separate beast modes for your different values and drag each of them on your graph

      CASE WHEN `engagement_status` = 'ES_user' THEN `value` END
    
    **Was this post helpful? Click Agree or Like below**
    **Did this solve your problem? Accept it as a solution!**