I got confused on which post was the latest
The syntax for a cell reference is:
[[<SHEET>]::<TABLE>::]<ROW1><COLUMN1>[:<ROW2><COLUMN2>]
the items in square braces are optional depending on the situation.
I will work my way through the possible combinations:
assuming we have two sheets named "Sheet 1" and "Sheet 2"
and assuming each sheet has two tables named "Table 1" and "Table 2"
1) a single cell in the same table, same sheet
e.g. A1
2) a range in the same table, same sheet
e.g. A1:B2
3) formula in a cell of "Table 1" referring to a cell in "Table 2" on the same sheet
e.g. "Table 2"::B1
4) formula in a cell of "Table 1" referring to a range in "Table 2" on the same sheet
e.g. "Table 2"::A1:B2
5) formula in a cell of "Table 1" of "Sheet 1" referring to a cell in "Table 2" on sheet "Sheet 2"
e.g. "Sheet 2"::"Table 2"::B1
5) formula in a cell of "Table 1" of "Sheet 1" referring to a range in "Table 2" on sheet "Sheet 2"
e.g. "Sheet 2"::"Table 2"::A1:B2
In Barry's formulas he assumes that the data in table name "Original" is the data that is NOT transposed.
Each cell in the table named "Transposed" contains a formula which retrieves data from the table "Original" such that the data is transposed.