Thread Win32::OLE & Excel
(5 answers)
Opened by gast at 2009-04-28 14:33
Schon lange nicht mehr damit gearbeitet, aber wird da nicht eine Array-Referenz erwartet?
Code (perl): (dl
)
$sheet -> Range( 'A2' ) -> {Value} = ['=IF(A5>3, "Yes", "No")']; EDIT: Stimmt nicht für Einzelwerte/-zellen, nur für Range-Bereiche. Code (perl): (dl
)
$sheet -> Range( 'A2B3' ) -> {Value} = $arrayref; Last edited: 2009-04-29 08:16:14 +0200 (CEST) Everyone knows that debugging is twice as hard as writing a program in the first place. So if you're as clever as you can be when you write it, how will you ever debug it? -- Brian Kernighan: "The Elements of Programming Style"
|