in reply to Variable Value Confusion
if ( $sheet->{Cells}[$row][2]->{Val} = "SYSTEM" ) {
should probably be:
if ( $sheet->{Cells}[$row][2]->{Val} eq "SYSTEM" ) {
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Variable Value Confusion
by finhagen (Sexton) on Mar 12, 2009 at 22:37 UTC |