Thanks Mufasa,
The depart_date is not a date field, so I did a to_date on it and it worked great. Made the code much cleaner. Thanks for your help!
select to_date(depart_date,'yyyymmdd') as "Departure Date",
decode(out_code,0,0,1) "out_code",
count(*) "Trips"
from departure_table...