Thread Win32::OLE & Excel (5 answers)
Opened by gast at 2009-04-28 14:33

FIFO
 2009-04-29 07:56
#121003 #121003
User since
2005-06-01
469 Artikel
BenutzerIn

user image
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"

View full thread Win32::OLE & Excel