0

I am trying to log values for a meter at one minute intervals. In lieu of entering the full value each time, I want to be able to enter just the numbers that are different: as opposed to entering the difference of the values or the entire number.

enter image description here

I have a rather cumbersome formula for doing this and it's good for new digits greater than zero but less than ten, after that, it just adds the number to the total.

enter image description here

If I could just enter the new digits, that would be ideal, whether they be .65, 1.25, 35.95, or 501.69 etc.

Thank you!

ThomK
  • 35
  • 1
  • 4

1 Answers1

0

I attacked it from the other direction and it now does what I want with a few less backflips.

It still removes the decimal so a trailing zero doesn't get lost in LEN().

  1. Whatever the number of digits that are in the new number, it replaces that number of digits out of the original number with zeroes.
  2. It adds the new number to the modified number.
  3. It divides by 100 to get the decimal back.

enter image description here

I have no doubt there is a much more elegant way of doing this.

Thank you!

ThomK
  • 35
  • 1
  • 4