Combining Filtered Rows to one table

Hello,

I am using one dataset for all three cards shown below. I have them on separate cards right now as they each are filtered to different things.

Is there a way I can combine them so they would all show on one card/table together with one heading but show the three rows one under another with their filters still applied to each row? Could I create a formula/beastmode that lists out each filter criteria and make that a new column basically and then have the data columns follow as they do now? If so how would something like that be formatted or do you know of other ways to approach this?

Thanks!!

Sam

Answers

  • Manasi_Panov
    Manasi_Panov Contributor

    Hi @SamanthaC,

    Yes, this can be accomplished using a CASE statement in Beast Mode. However, the results will be displayed in a column rather than rows. If you provide additional details or a sample dataset, Iā€™d be happy to assist further.

    If you found this post helpful, please use šŸ’”/šŸ’–/šŸ‘/šŸ˜Š below! If it solved your problem, don't forget to accept the answer.

  • Agree with Manasi, you could use a CASE statement in a BeastMode. Something like:

    CASE

    WHEN [conditions for first table] THEN 'Row 1'

    WHEN [conditions for second table] THEN 'Row 2'

    WHEN [conditions for third table] THEN 'Row 3'

    ELSE 'Exclude'

    END

    Then filter your card to exclude the 'Exclude' rows.

    Please šŸ’”/šŸ’–/šŸ‘/šŸ˜Š this post if you read it and found it helpful.

    Please accept the answer if it solved your problem.