in reply to Re^4: Creating .csv file with comma
in thread Creating .csv file with comma

This line fixed my issue with the code:

my $csv = Text::CSV->new ( { binary => 1, auto_diag=>2, escape_char => + "\\", eol => "\n", quote_char => '', } )


Thanks for all the help!!