Hey! I’ve got a big list I want to enrich it where it only runs the column if they’ve been in their latest exp more than 1 month but less than 6 months
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 😉
Hey Ben, have you already tried our AI formula generator? https://www.clay.com/learn/how-to-use-ai-formulas
Actually just looked at your table a bit deeper. We’re unable to know when their start date is without enriching the profile to pull that information.
So in this case you’d need to enrich everyone on your list, then use AI formulas afterwards to restrict what other enrichments you run
An alternative would be to run the find people search based on the experience conditions - so you’d only find people in the first place that match
Matthew Q. does the above ^ "find people search" have the use case of finding people who just started their role at their current company between 0-6 months?
and on a similar note, is there a way to find a person's years of experience working after enriching their personal linkedin profile? Thank you!!
Hey Mike, jumping in on this. Yes, you can use the "Maximum Months in current role" and set it to 6 months to achieve this. For the second one, you can also use the formula generator, to sum up their work experience overall but if you need the sum to the same about experience in the same industry only then chatGPT would probably be better at that task
Lol just realized I didn't properly edit my last sentence but glad it was somewhat understandable 😆
To sum up the total experience, sure. I'll generate a prompt to return integer years or months and post the code+prompt. Not much different than using GPT though, it comes down to playing around with the prompt lol
Mike J..sum({{Enrich Person from LinkedIn Profile}}?.experience?.map(exp =>  exp.enddate ? moment.duration(moment(exp.end_date).diff(moment(exp.start_date))).years() : moment.duration(moment('2023').diff(moment(exp.start_date))).years()))

This is incredible! Thank you VERY much!
.png)