I have an excel sheet with exactly 1 filled cell per row and column like this:
-------------
| 3 | | |
-------------
| | | 1 |
-------------
| | 2 | |
-------------
for which I want to create a "projection" row and column like so (the arrows denote the projection direction):
------------- -----
| 3 | | | | 3 |
------------- -----
| | | 1 | --> | 1 |
------------- -----
| | 2 | | | 2 |
------------- -----
|
v
-------------
| 3 | 2 | 1 |
-------------
any suggestions of how to accomplish that without resorting to VBA?