Thread Excel::Writer::XLSX -> Format all Cells (1 answers)
Opened by Borsti26 at 2014-07-03 17:34

Gast Borsti26
 2014-07-03 17:34
#176283 #176283
Hallo,

ich nutze "Excel::Writer::XLSX" und möchte gerne der Optik wegen allen Cellen einen weißen Hintergrund verpassen. Damit das Gitternetz Optisch verschwindet.

Mit VBA ist das kein Problem aber mit "Excel::Writer::XLSX" bekomme ich das nicht hin.

Code: (dl )
1
2
3
4
5
6
7
8
9
Sub Makro1()
Cells.Select
With Selection.Interior
.PatternColorIndex = xlAutomatic
.ThemeColor = xlThemeColorDark1
.TintAndShade = 0
.PatternTintAndShade = 0
End With
End Sub


Kennt jemand eine Möglichkeit?
Bin für jede Hilfe dankbar.

Gruß
Last edited: 2014-07-03 18:20:28 +0200 (CEST)

View full thread Excel::Writer::XLSX -> Format all Cells