How can we create a filter typology rule to exclude recipients that have received less or more than 'n' deliveries?
Solved! Go to Solution.
Views
Replies
Total Likes
Hello @campaignap ,
You will need to set your query as follows
First screen:
Select filtering condition:
How you do it?
SELECT R0.iRecipientId FROM NmsRecipient R0 WHERE (SELECT COUNT(*) FROM NmsBroadLogRcp B1 WHERE (B1.iRecipientId = R0.iRecipientId) AND (((B1.iStatus = 1)))) < 5 LIMIT 10001
Marcel
Hi,
Hope you are doing well.
You could query the Brodlog table and see in how many deliveries a particular recipient is targeted, the same could be done on profile schema as well.
Regards,
Akshey Malhotra
Hello @campaignap ,
You will need to set your query as follows
First screen:
Select filtering condition:
How you do it?
SELECT R0.iRecipientId FROM NmsRecipient R0 WHERE (SELECT COUNT(*) FROM NmsBroadLogRcp B1 WHERE (B1.iRecipientId = R0.iRecipientId) AND (((B1.iStatus = 1)))) < 5 LIMIT 10001
Marcel