You can export ActiveCampaign contacts with a specific custom field value to a CSV file using the Advanced Task Editor Mode in a Skyvia Export integration.
your field id with the actual custom field ID value from your ActiveCampaign connection:SELECT Email, CreatedDate, Value
FROM (SELECT ContactId, Value
FROM ContactCustomFieldValues
WHERE FieldId = your field id) AS cfv
JOIN
(SELECT Id, Email, CreatedDate
FROM Contacts) AS ct
ON cfv.ContactId = ct.Id
GROUP BY ValueNote: Value contains the custom field value. Email serves as the unique contact identifier.
The exported CSV will include: