I have a table like:
item1 item2 item3 item4... itemn
1 2 3 4... n
If I need to do some calculus with some variables lets say powers and sqrt with item1,item3, and insert it in column 1 of a new table, and then the same operations but with item2 and item4 and then insert it in column 2 of new table,... well something like:
new table
column1 column2 column3 .. columnsn-1 columnsn
item1*item3 item2*item4 item3*item5 .. itemn-1*item1 itemn *item2
But as the column names are variable (aka different tables) I dont know how to accomplish and get the values of specific columns, Could you please help me?