A post by badunit is good enough, although it reads left to right, then top to bottom. I would like it to be top to bottom then left to right, like a newspaper. but oh well! Thanks badunit
Re: alphabetizing lists in numbers '09
Posted: Jul 13, 2010 11:49 AM in response to: Marc Eaton1
I'm not sure how your original table was arranged. If it was alphabetized across a row then continued to the following rows like this
Bob Charles James
John Kathy Mary
you can enter the names in a single-column table where you can make all your additions, deletions, and edits and re-alphabetize and then use a formula in a different table for display purposes that will automatically arrange the names in the way you choose. This formula will make a table arranged as above:
=IFERROR(IF(ISBLANK(INDIRECT(ADDRESS(COLUMN()+(COLUMNS(2:2)-1)*(ROW()-2),2,,,"Ta ble 2"))),"",INDIRECT(ADDRESS(COLUMN()+(COLUMNS(2:2)-1)*(ROW()-2),2,,,"Table 2"))),"")
It assumes the two tables each have a header column and header row and it based on your alphabetized names being listed in column B of Table 2. Put it in cell B2 of the other table then copy/paste it to all the other cells. It isn't really as complex as it looks, the error checking and checking for blanks is what makes it look formidable.
If you want your table arranged a different way, a similar formula could be made.