Hi shadow,
Glad it helped. That's a good question about the number of zeros needed in front and the number in the second argument of RIGHT.
I just gave =A&RIGHT("0000"&C,4)&B as a quick example of what kind of approach can work for people who have do a lot of multicolumn sorting.
If you have larger numbers you'll need to adjust that, as I did in the example a few posts up in this thread, where I had: =B&RIGHT("0000000"&C,9)
Say the original value in the cell of a column you want to sort is $233.91. All the last part of this formula does is turn $233.91 from a number into a "string" and add ('concatenate") seven zeros in front, giving 0000000$233.91. Then it takes the right 9 characters of that, giving 00$233.91. If you've got larger numbers in your column you need to add more leading zeros for "padding" and increase the second argument in the RIGHT() function.
If you're doing a lot of this Barry, Jerry or others could probably give you a formula that would look for the largest number value in the column and adjust automatically. I tend to just put in more padding than I think I will need and then add more if the column doesn't sort correctly.
Hope the next release includes multicolumn sorting to match the multicolumn filtering they already have so we don't have to resort to a sorting index column. It's a bit ugly. But it's not that hard, and it does work reliably.
SG