Could you use the MROUND function? It looks like your list is incremented by 200. So if your data is in column A it would be:
=MROUND(A2,200)
and if you need it to never be below 400 you could use:
=MAX(MROUND(A2,200),400)