Hi All,
I got a column with different Excel cell number, and I would like to know how to order the column in alphabet order?
Thanks all of you, and I have attached a sample data in this post down below
| Original | data | Expected Output | data |
| A1 | 1 | A1 | 1 |
| A2 | 2 | A2 | 2 |
| A3 | 3 | A3 | 3 |
| AA1 | 1 | B1 | 1 |
| AA2 | 2 | B2 | 2 |
| AA3 | 3 | B3 | 3 |
| B1 | 1 | AA1 | 1 |
| B2 | 2 | AA2 | 2 |
| B3 | 3 | AA3 | 3 |
Furthermore, I would also like to know how can I convert the table structure into the following like excel
| | A | B | AA |
| 1 | Data1 | Data1 | Data1 |
| 2 | Data2 | Data2 | Data2 |
| 3 | Data3 | Data3 | Data3 |