hier eine Lösung mit VBA, die alle markierten Zellen entsprechend umwandelt.
Sub PunktstattKomma()
Dim c As Range
Dim strText As String
For Each c In Selection
strText = CStr(c.Value)
strText = Application.WorksheetFunction.Substitute(strText, ",", ".")
c.Clear
c.NumberFormat = "@"
c.Value = strText
Next
End Sub
Gruß Worti <img src="http://media2.giga.de/2015/06/snapchat-smiley-sonnenbrille.png">
geschrieben von Worti , 17.04.2006, 19:06 Uhr , 28 mal gelesen