Forum Discussion
83dons
1 year agoHelper III
Create a table by pulling through an existing one
Hi is there a way to start a new table by using a previous table as the source? SO instead of say a combine of two tables which is easy just pulling through one table?
= Table.Combine({Current, Leavers})
I have tried = Table ({Current}) but it didnt work.
HI 83dons ,
To create a new table based on an existing one (like Current), you just reference it directly by name, like this:
= Current
2 Replies
- Bibiano_GeraldoSuper User
HI 83dons ,
To create a new table based on an existing one (like Current), you just reference it directly by name, like this:
= Current - 83donsHelper III
Thanks knew it would be something simple!