Hello,
My delema is that I have a Start Date, Phone numbers, and a #Max Call field for particular campaigns. What I need to do, is figure out the count of a single phone number called with a certain start date and see if it ends up exceeding the max call nummber.
I actually managed to do this in a table with
case
when `Wireless_Flag`='YES' and (COUNT(`Phone_Number`))>(SUM(`WirelessAttempts`))
then 'Flag'
else 'Clear'
end
So it tells me if a particular phone number was called greater than the max number in was supposed to within a particular campaign... and "flags" it. This is an aggregated field... So I am not able to filter it to only "Flag'.
But I want a table of ONLY the flags. Is this at all possible?