Clay Icon
  • Avatar of Clay Team
    Clay Team
    APP
    Β·

    Hey hey! Can you drop the URL for your table here? (if applicable) 🫢 Don't worry, only admins will be able to open your table πŸ˜‰

  • Avatar of Avery
    Avery
    Β·

    Yep! Parentheses do group conditions.

  • Avatar of Avery
    Avery
    Β·

    You'll have an easier time of things breaking this up into a couple of columns that do less work each. Like you could have a checkbox that's just checking that col is

    "{{status_column}} == "Customer || {{status_column}} == "NQL" || {{status_column}} == "SQL"}}

  • Avatar of Clay Team
    Clay Team
    APP
    Β·

    Hey Tyron, taking a look! Avery is familiar with formulas so that may be the way to go!

  • Avatar of Avery
    Avery
    Β·

    to your original question conditions work like this:

    true || false == true
    false || (true || false) == true
    false || (true && false) == false
    true && false == false
    true && (false || true) == true