I have a scoring system set up, where the worst score possible is $-251$, and the best is $198$.
How can I scale any results, to fit on a $0$ to $100$ scale? (I.e. if the user gets $-251$, I want to show $0$ instead). I found this thread which got me to a formula of:
$y = \frac{-98}{251} \cdot x+ 100$
But, if I plug in $-251$ for $x$, I get $198$, instead of the expected $0$. If my slope is instead $\frac{98}{251}$, the result is $2$ (which is obviously closer to $0$).
What am I missing/misunderstanding?