From: "Rob" <[EMAIL PROTECTED]> > Does anyone have any advice on how to write to an EXISTING MS Excel > file? The goal is to have a script update values in an excel file. > > Thanks, > Rob
use Win32::OLE; $excel = new Win32::OLE 'Excel.Application', 'quit()'; #$excel->{Visible} = 1; $excel->Open($full_path_to_file); .... You should be able to find some examples in the archives of this list or the ActiveState's lists or somewhere on the Net. Basicaly you can use all objects&methods&properties described in the Excel VB docs, just the syntax is slightly different ;-) Jenda =========== [EMAIL PROTECTED] == http://Jenda.Krynicky.cz ========== There is a reason for living. There must be. I've seen it somewhere. It's just that in the mess on my table ... and in my brain I can't find it. --- me -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]