Hallo zusammen,
hat jemand für mich eine Lösung für folgendes Problem:
Ich möchte ein Ergebnis mit 2 Stellen hinter dem Komma haben z.B. 575,88
und nicht wie hier:
SQRT(100^2+100^2) = 575,877048314363
Danke LG Alex
Hallo zusammen,
hat jemand für mich eine Lösung für folgendes Problem:
Ich möchte ein Ergebnis mit 2 Stellen hinter dem Komma haben z.B. 575,88
und nicht wie hier:
SQRT(100^2+100^2) = 575,877048314363
Danke LG Alex
Hello!
Try this way:
a1 = SQRT(100^2+100^2) = 141.4213562373
a2 = MOD(PREC(a1)*100)/100 = 0.42
a3 = MOD(a1)+a2 = 141.42
-Sami
Hallo Alex,
oder so
MOD(PREC(SQRT(100^2+100^2))*100)/100+MOD (SQRT(100^2+100^2))
Super Vielen dank euch
Top
Don’t have an account yet? Register yourself now and be a part of our community!