My requirement is to set color for a whole row in excel sheet. I found the following statement for coloring cells: $Sheet->Range('A1')->Interior->{ColorIndex} =27;
I tried modifying it to: $Sheet->Range('1')->Interior->{ColorIndex} =27;
I also tried $Sheet->Rows('1')->Interior->{ColorIndex} =27;
All of it to no avail, does anyone know what property can I use? Thanks you monks.