Forum Discussion
Anonymous_KH
3 years agoFrequent Visitor
Using DAX How to Create a new table from existing tables
Hello Power BI community, A very simple question on creating a new table in Power BI. Please find below as a data Table 1 | CANDY | OFFICE | |--------|------------| | Nomi | Challakere | ...
- 3 years ago
Try:
Table 3 = SELECTCOLUMNS ( 'Table 1', "Candy", 'Table 1'[CANDY], "Producer", LOOKUPVALUE ( 'Table 2'[PRODUCER ID], 'Table 2'[OFFICE], 'Table 1'[OFFICE] ) )
sudhav
3 years agoHelper V
you can use merge queries as nwe and select required colmns in PQE. otherwise use joins in DAX
Anonymous_KH
3 years agoFrequent Visitor
Can You Please Write Down DAX Function here
- PaulDBrown3 years agoCommunity Champion
Try:
Table 3 = SELECTCOLUMNS ( 'Table 1', "Candy", 'Table 1'[CANDY], "Producer", LOOKUPVALUE ( 'Table 2'[PRODUCER ID], 'Table 2'[OFFICE], 'Table 1'[OFFICE] ) )