Forum Discussion
BIXL
Resolver I
10 years agocreate new table with partial columns from another table in dax
Hi I wonder if there is a way to create a table in dax that is the same like another table but with less colmun. for example : table "A" has "col1","col2","col3" I want to create table "B" with j...
Imran10
3 years agoNew Member
Hi, the following should work when creating a new table:
tableB = ALL(tableA[col1],tableA[col2])