in reply to Re^2: Win32::OLE and EXCEL
in thread Win32::OLE and EXCEL

Hi,

Thanks for clearing that up. You can see from this example how to set up the column headings:
# Insert column titles my $Range = $Sheet->Range("A1:E1"); $Range->{Value} = [qw(Time Open High Low Close)]; $Range->Font->{Bold} = 1;

Hope this helps.

Martin