Hi I have a range and percent of that range. I want to calculate the value of that percentage.
for exam:
min = -5
max = 30
percentage = 8%
value = ?
Value should be a 8% of the range of (-5 .. 30)
Hi I have a range and percent of that range. I want to calculate the value of that percentage.
for exam:
min = -5
max = 30
percentage = 8%
value = ?
Value should be a 8% of the range of (-5 .. 30)
Since$$ \text{percentage} = \frac{\text{value} - \min}{\max - \min} \times 100\%, $$ then$$ \text{value} = \min + (\max - \min) \times \text{percentage}. $$