Forum Discussion
Jo_Chrq
4 years agoHelper I
Create single column table from 2 tables
Hi, I have two tables, each one has a "Campaign name" column. They share some campaigns but not all. I would like to create a table with all campaigns : Table 1 Campaign A Campaign B ...
- 4 years ago
Jo_Chrq , create a new table
distinct(union(distinct(Table1[Campaign ]),distinct(Table1[Campaign ])))
amitchandak
4 years agoSuper User
Jo_Chrq , create a new table
distinct(union(distinct(Table1[Campaign ]),distinct(Table1[Campaign ])))
Jo_Chrq
4 years agoHelper I
GREAT ! thank you