Hello - I am trying to write a formula and can not figure it out.

Based on a number in a cell, have another cell to display the number of runs based on the number. Each run equals 300,000

This is what I had so far:

=IF(P14="","",MIN(100,IF(P14<300000,0,IF(P14<300000,1,INT)))& " Runs")

Not really sure how close I am, I was goign off an old formula.

0-299,999 display "0 Runs"
300,000-599,999 display "1 Run"
600,000-899,999 display "2 Runs".....ect. Up to maybe 100 runs or so.

thank you so much!