Rechnen mit Kommazahlen (aus TextBox)

Hi Christoph,

If InStr(stWert, „,“) > 0 Then stWert = Replace(stWert, „,“, „.“)

wozu extra abfragen ob ein Komma drin ist?
dblWert = val(Replace(stWert, „,“, „.“))

LG Alex