in reply to Re: Borders of a single cell in Excel
in thread Borders of a single cell in Excel

I'll try that, thanks.
  • Comment on Re^2: Borders of a single cell in Excel

Replies are listed 'Best First'.
Re^3: Borders of a single cell in Excel
by Bintuch (Acolyte) on Sep 15, 2008 at 14:36 UTC
    Hi, it didn't work. Eventually, I've tried some differnet code that worked:
    my @Edges = qw(xlEdgeBottom xlEdgeLeft xlEdgeRight xlEdgeT +op xlDiagonalUp xlDiagonalDown); foreach my $edge (@Edges) { $SheetWaferMap->Range("$Excel_LUT{$ValueX}$ValueY")->B +orders(eval($edge))->{LineStyle} = 7; }