How do you remove some column data?

Options

I have a column with true and false values for emails. I want to remove all the false values, but when I do, I lose the other columns (meetings and calls) in the table chart.

How do I remove just the false values, but have it not apply or filter out all the other data columns?

Best Answer

  • ColemenWilson
    edited September 2023 Answer ✓
    Options

    I'd suggest using a beastmode as a filter with 2 conditions:

    1. Is an email
    2. is false

    That way, non-email rows that are false will remain. It would look something like this:

    CASE WHEN `type` = 'email' AND `engagement_bodypreviewistruncated` = 'false' THEN 'out' ELSE 'in' END

    Then drag the beastmode into the filter section in analyzer and select "In" as in.

    If I solved your problem, please select "yes" above

Answers

  • ColemenWilson
    edited September 2023 Answer ✓
    Options

    I'd suggest using a beastmode as a filter with 2 conditions:

    1. Is an email
    2. is false

    That way, non-email rows that are false will remain. It would look something like this:

    CASE WHEN `type` = 'email' AND `engagement_bodypreviewistruncated` = 'false' THEN 'out' ELSE 'in' END

    Then drag the beastmode into the filter section in analyzer and select "In" as in.

    If I solved your problem, please select "yes" above