high=10
low=5
value=8
what is the formula to identify where 'value' is relative to the high and low (range)
2 answers
There is no formula. 8 is closer to high than low.
try...
value = low + ((high - low)(x%))
value = low + ((high - low)(x%))