Forum Discussion
Anonymous
4 years agoNot applicable
Combine Two Columns
Hi community..!! I wanted to append the two columns in one column. Please refer the below image. I wanted to create new column called as No_of_finals and in that I wanted to append Winner ...
- 4 years ago
HI Anonymous
I am not sure if you could create that column in same table. Instead you can try to create seperate table with below code:-
table2 = UNION(VALUES(table[winner]),VALUES(table[runner-up]))Thanks,
Samarth
Samarth_18
4 years agoCommunity Champion
HI Anonymous
I am not sure if you could create that column in same table. Instead you can try to create seperate table with below code:-
table2 = UNION(VALUES(table[winner]),VALUES(table[runner-up]))
Thanks,
Samarth
- Anonymous4 years agoNot applicable
Thanks Samarth_18