Okay I have chosen the data source -> Contacts: Segment Membership
I go to the data table and I can see no way of sorting a specific segment by a specific set of dates.
This seems like it should be do able maybe I am missing something.
Does anyone know whether it’s possible to filter by date added to a segment?
Hi There is a solution for this if you are prepared to go into the mysql database itself.
If you look in the lead_lists_lead table you will be able to query that to get what you want.
Here is a simple query which will just give you the count of leads added to a specific segment over a specific period of time:
select count(lead_id) from lead_lists_leads where date_added >= “2021-07-01%” and date_added <= “2021-07-18%” and leadlist_id = 33;