-
I am trying to sum a LOT of numbers and using the . feature would be a big help but it doesnt work for me? I get the answer to a previous sum then I write "calc . + 26.10" and it gives me the result of "26.1" instead of adding up the previous sum plus 26.10....what am I doing wrong? Does the dot feature not work anymore? Kindly, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
When calc starts up, it starts with the value of 0. So:
works because the value "0" has "26.1" added to it again and again increasing. If however, you were to have calc exit and restart:
Then on each calc restart, 26.1 is added to the initial value of "0". This is the same thing: $ : rubin; calc . + 26.10
26.1
$ calc . + 26.10
26.1
$ calc . + 26.10
26.1 In other words, each time time calc restarts with the value of 0, 26.10 is added tot producing a value of 23.1. |
Beta Was this translation helpful? Give feedback.
-
You are most welcome, @brittGit |
Beta Was this translation helpful? Give feedback.
When calc starts up, it starts with the value of 0.
So:
works because the value "0" has "26.1" added to it again and again increasing.