Page 1 of 1

Lead Filter, Multiple Filters.

PostPosted: Tue Apr 30, 2013 2:03 pm
by Nefariousparity
address3 >= ('300000')
AND
vendor_lead_code = ('A')
OR
vendor_lead_code = ('B')
OR
vendor_lead_code = ('C')
OR
vendor_lead_code = ('D')


So the first part refers to home value, with the rest being different levels of credit. Does this look correct? Just curious. Thank you. :)

Re: Lead Filter, Multiple Filters.

PostPosted: Tue Apr 30, 2013 2:33 pm
by williamconley
do NOT use "OR".

use vendor_lead_code IN ('A','B','C','D')

instead.

OR will override the rest of the filter you can't see (ie: limit to this list and campaign and those who have not been dialed yet ...) unless you know what you are doing. so do not use OR and stay safe. LOL

TEST it: look at available leads on the campaign. apply the filter. did the number of leads available change in a rational way (ie: probably from 10k to 5k?) or did it go freaky (ie: from 10k to 1.2M!)

Re: Lead Filter, Multiple Filters.

PostPosted: Fri May 03, 2013 11:38 am
by Nefariousparity
Thank you William. You are the man!