in reply to Re^2: Creating One Table From Several Hashes
in thread Creating One Table From Several Hashes

Easy! After
my ($zip, $amt, $date, $candid) = split;
just add
$date = days_to_week($date);

Writing days_to_week is left as an exercise for the reader :) (I'd use DateTime.)