Forum Discussion
iamprajot
Responsive Resident
8 years agoSELECTCOLUMNS or Table.SelectColumns ?
Hi I need to create a new table using columns from existing few tables and I need to know what is the best option to go for. SELECTCOLUMNS or let Source = Table.SelectColumns('Original So...
- 8 years ago
Hi iamprajot,
Yes, you can use DAX functions like SUMMARIZE() or ADDCOLUMNS() or ( SELECTCOLUMNS(), UNION() ) to create a custom table from exsiting tables.
Regards,
Jimmy Tao
v-yuta-msft
Community Support
8 years agoHi iamprajot,
Yes, you can use DAX functions like SUMMARIZE() or ADDCOLUMNS() or ( SELECTCOLUMNS(), UNION() ) to create a custom table from exsiting tables.
Regards,
Jimmy Tao
DAXRichArd
Resolver I
7 years agoCANCEL REQUEST FOR HELP
I figured it out.
TEST =
DISTINCT (
SELECTCOLUMNS (
FILTER ( 'Merged Tables', [Airline Name] <> BLANK () ),
"Airline Name", 'Merged Tables'[Airline Name]
)
)