Can anyone help me with the filter im trying to create??
Example:
I need to set a filter to NOT TO CALL AZ and KY state with a minimum of 1m loan balance(loan balance appointed to alt_phone field), any other state including AZ and KY(AZ and KY state with below 1m loan balance) will be called, also on the same filter I need to call MI state with a minimum of 150k loan balance only.
This is the syntax I used, I know it's wrong coz I created a test list with 20 records(5MI state with 100k loan bal, 5 MI state with 200k loan bal, 5 AZ state with 1m loan bal and 5 KY state with 800k loan bal) when i tested the filter only 5 numbers passed and its supposed to be 10 numbers. .
- Code: Select all
(alt_phone < 150000 AND STATE IN ('MI'))
AND
(alt_phone < 1000000 AND STATE NOT IN ('AZ','KY',' NJ','PA','CT','SD','IN'))
Anybody that can help will be much appreciated
Thank you,