Forum Discussion
Surya1
8 years agoHelper I
DAX
Can someone please help I have two tables Table1 col-1 col-2 col-3 col-4 col-5 col-6 abc b cvb a ...
- 8 years ago
Hi Surya1,
To achieve your requirement, you can use DAX formula below:
New table = SUMMARIZE(Table1, Table1[col-4], Table2[col-a], Table1[col-5], Table1[col-6], Table2[col-d], Table2[col-e])
Regards,
Jimmy Tao
v-yuta-msft
8 years agoCommunity Support
Hi Surya1,
To achieve your requirement, you can use DAX formula below:
New table = SUMMARIZE(Table1, Table1[col-4], Table2[col-a], Table1[col-5], Table1[col-6], Table2[col-d], Table2[col-e])
Regards,
Jimmy Tao
Harinath
8 years agoRegular Visitor
Hi Jimmy,
when i am trying above DAX Formula, I am unable to select second table column name.
Please suggest.