4
anwenden Unter Code gelten alle Texte kursiv, aber ich möchte bestimmte Wörter kursiv anwenden.Wie man kursive Format in bestimmten Wörtern in Excel mit perl
use Win32::OLE;
foreach my $key (keys %main){
my @cnt = @{$main{$key}};
my $count = 1;
foreach my $cnt (@cnt){
++$count;
$cnt =~ s{\n}{}g;
$sheet -> Range("$key$count") -> {NumberFormat} = "\@";
$sheet->Range("$key$count")->{Value} = "$cnt";
$sheet -> Range("$key$count:${range}1") -> Columns -> {AutoFit} = "True";
$sheet->Range("A1:${range}1")->Font->{Italic} = "True";
}
}