I have an Excel file containing the time series of some financial variables, let's call them X and Y, computed at the same dates.
These variables are computed for four different universes of funds, let's say A,B,C and D, which are all made of 6K funds.
I have started using for each universe a structure made of two tables, one for X and one for Y, containing the time series stored horizzontally. For example, table X of universe A has as Row Names the names of funds in A and as Variable Names the dates at which X is computed.
My problem is that the data type Table doesn't allow to have same column headers as Variable Names must be uniques. Instead I would like to have same column headers both among different tables from the same universe (A.X and A.Y) and among different tables from different universes (A.X and B.Y).
Does anyone know a way to bypass the unicity constraint? I would really like to use the structures of tables architecture as it allows me to name variables and acces them easily.
Thanks for your help.