Einführung "VBA mit Microsoft Office"

Code Snippet "VBA Excel"

Herdt Excel 2003 VBA 2.8 Übung 1

Formatiert ausgewählten Bereich mit Euro-Format

'******************************************************************
' Herdt Excel 2003 VBA Kapitel 2.8 Übung 1
Sub DatenFormatieren()
'
' DatenFormatieren Makro
' Makro am 22.02.2007 von Silvia Rothen aufgezeichnet
'
' Tastenkombination: Strg+Umschalt+M
'
    Selection.NumberFormat = "#,##0_- [$€-1]"
    Selection.Font.ColorIndex = 49
End Sub