top of page
THEMENKURSE | EXCEL VBA IN 100 SEKUNDEN
Excel VBA With Anweisung
Excel VBA in 100 Sekunden: Die With Anweisung
Beispiel 1
-
Eine Reihe von Format-Einstellungen vornehmen (ohne With Anweisung)
Sub Beispiel1()
'Eine Reihe von Format-Einstellungen vornehmen
Range("A2:B5").Font.Name = "Arial"
Range("A2:B5").Font.Bold = True
Range("A2:B5").Font.Underline = True
Range("A2:B5").Font.ColorIndex = 4
Range("A2:B5").Font.Italic = True
End Sub
Beispiel 2
-
Eine Reihe von Format-Einstellungen vornehmen (mit With Anweisung)
Sub Beispiel2()
'Eine Reihe von Format-Einstellungen vornehmen
With Range("A8:B11").Font
.Name = "Arial" .Bold = True
.Font.Underline = True
.Font.ColorIndex = 4
.Font.Italic = True
End With
End Sub
bottom of page