Clay Icon

Segmenting Job Titles by Function in Clay: A Guide

Β·
Β·

i have a list which has mix of all the job titles, how can i segment that list by job function in clay

  • Avatar of Summiya B.
    Summiya B.
    Β·
    Β·

    You can use formula to extract the job titles. IF( OR(CONTAINS([Job Title], "Marketing"), CONTAINS([Job Title], "Brand"), CONTAINS([Job Title], "Growth")), "Marketing", IF( OR(CONTAINS([Job Title], "Operations"), CONTAINS([Job Title], "Logistics"), CONTAINS([Job Title], "Supply Chain")), "Operations", "Other" ) ) After categorization shift them into multiple tables

  • Avatar of Mukund G.
    Mukund G.
    Β·
    Β·

    got it, thanks