Hi there,
I have two tables, with identical structures. I need to create a third table that has all rows from both tables.
For example, let table 1 be:
A B
1 Name Age
2 John 20
3 Peter 15
And table 2:
D E
1 Name Age
2 Mary 23
3 Ann 21
Then I would have table 3:
John 20
Peter 15
Mary 23
Ann 21
In Google Sheets, I achieved that with a formula such as
={A2:B3;D2:B3}
But that gives a 539 error in LO.
Thanks