Sorry for the poor wording, I'm not sure how to describe this.
As the value $x$ increases from $0$ to $600$, how can I make the value $y$ to range from $1$ to $0$. So for example, when $x = 0$, $y = 1$, and when $x=600$, $y = 0$ (and if $x=300$ then $y = 0.5$, and so on.) Any pointers in the right direction would be helpful.
There might be many ways to achieve this, here's one:
Define $y = 1 - \frac{x}{600}$