Funktion FormatCurrency() |
Syntax: FormatCurrency(Zahl [,Nachkommastellen]) |
Beispiele: FormatCurrency(49.9) ' Liefert "49,90 ¤". FormatCurrency(49.956, 2) ' Liefert "49,96 ¤". FormatCurrency("9876,501") ' Liefert "9.876,50 ¤" Die Variable "Var_Netto" = "99,678", Variable "MwSt" = "1,16" FormatCurrency(Var_Netto * MwSt) ' Liefert "115,63 ¤". |