Hello all. Thanks in advance for any help you can give me. I have been trying to find a way to sort hundreds of rows and can't figure it out. Here is an example of what I have:

23 56 34 16 25 6
56 45 48 23 12 5
12 45 34 67 47 32
.
.
.
What I want to do is sort each row lowest to highest like so:

6 16 23 25 34 56
5 12 23 45 48 56
12 32 34 45 47 67

The sort by rows thing doesn't work.

Thanks again!

-Mark