So far I have this and it isn't filtering the right way:
Do not call leads with NI and last call of 7 days or less:
- Code: Select all
not (last_local_call_time > CURDATE() - interval 7 day and status = 'NI')
Moderators: gerski, enjay, williamconley, Op3r, Staydog, gardo, mflorell, MJCoate, mcargile, Kumba, Michael_N
not (last_local_call_time > CURDATE() - interval 7 day and status = 'NI')
( ( (status='NI') and (last_local_call_time < CONCAT(DATE_ADD(CURDATE(), INTERVAL -7 DAY),' ',CURTIME()) ) ) or (status != 'NI') )
Users browsing this forum: No registered users and 62 guests