Forum Discussion
Anonymous
6 years agoNot applicable
Extract Two Column from Master Table
Hi Experts how would you extract just two columns from a master tables. Master table assume has columns A:F but i want to creat another table (no unique records in new table) showing just columns...
- 6 years ago
Try like
New table = selectcolumns(Table,"A",Table[A],"B",Table[B])
New table = summarize(Table,Table[A],Table[B]) // This will give distinct values
amitchandak
6 years agoSuper User
Try like
New table = selectcolumns(Table,"A",Table[A],"B",Table[B])
New table = summarize(Table,Table[A],Table[B]) // This will give distinct values
- Anonymous6 years agoNot applicable
thanks