in reply to Re^2: Copying data sets of varying size into excel using OLE
in thread Copying data sets of varying size into excel using OLE
If I'm correct, I believe that $range->{Value} is expecting a scalar (think a single integer, a single string, etc.) and you're trying to feed it an array. Personally, I've never tried to dump an array of data into a range of more than one cell. I've always done a single value into a single cell. You'll probably have more success doing the same. In your case, you'll probably want to do a loop as Corion suggested.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Copying data sets of varying size into excel using OLE
by Anonymous Monk on Sep 08, 2010 at 20:52 UTC | |
by ww (Archbishop) on Sep 08, 2010 at 22:25 UTC | |
by Anonymous Monk on Sep 09, 2010 at 16:39 UTC |