Which field do I use from enrich profile to determine a current company of employment, if they have 2 present like in this example? https://www.linkedin.com/in/maureen-smith-1001105a/
When using "Enrich Person from Profile," look for the "Latest Experience" field to determine current employment. This field specifically identifies the most recent company position. You can also use the "Contact Current Employer" data point, which discovers the current company where your contact is working. The "Latest Experience" field is designed to handle cases where someone has multiple present positions by identifying the primary current role.
Hello Nicole! Thanks for reaching out! Using Enrich Person should pull up all experiences including the current ones.
Great! Going to go ahead and close this out. Do reach out again if there is anything else!
When someone has multiple current roles, Clay’s "Enrich Profile" (e.g., from Clay's native LinkedIn parser or tools like People Data Labs) usually lists all current positions under a single field like experience or current_positions. There isn’t a built-in “main job” selector, but here’s a common trick: Use a Formula column to pick the one with the latest start date Or prioritize based on keywords in the title or company_name (e.g., exclude board/advisor roles) Example formula idea: experience.filter(e => e.is_current).sortBy(e => e.start_date).reverse()[0] That gives you the most recent current job