I have two tables :- First one is
T1 T2 T3
1 0 0 1
2 1 0 0
3 0 0 0
Second one is:
ABC DEF GHI
1 0 0 1
2 1 0 0
3 0 0 0
I want the final output to look like
T1 T2 T3
ABC DEF GHI
1 0 0 1
2 1 0 0
3 0 0 0
T1 & ABC have to be separate cells and not concatenated.
Can something be done for this?