What I want to do is basically round down a number, for instance I know that the my numbers are always going to be 5 digit long, but I want them to be rounded down as follow.
If----------Round down to
25335 = 25000
26458 = 26000
50465 = 50000
etc...
I tried floor(value) but I think this is just for floats.