Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dim IntPart, DecPart
cur = (Format(cur, "#,###.00"))
If InStr(1, cur, ".") > 0 Then
DecPart = Mid(cur, InStr(1, cur, ".") + 1)
Else
DecPart = "00"
End If
IntPart = Mid(cur, 1, InStr(1, cur, ".") - 1)
Do While InStr(1, IntPart, ",") > 0
Mid(IntPart, InStr(1, IntPart, ","), 1) = "."
Loop
EUCurrency = IntPart & "," & DecPart