in reply to Re^3: Seperating Fixed Line Feed into Fieldsin thread Seperating Fixed Line Feed into Fields
my $row = 0; while (<DATA>) { # data loop is here # unpack, etc. $worksheet->write_row($row++, 0, \@fields); } [download]