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