Forum Discussion
kennyyip
Helper I
8 years agovlookup and return text
Hi, I have two tables, one is raw data table ("Deal") and the other table "Customer" is created by summarizing the table "Deal" using the key "customer name" (which is also text). Each customer ...
- 8 years ago
You may refer to the DAX below.
Column = LOOKUPVALUE ( Deal[industry], Deal[customer name], Customer[customer name] )
Table = SUMMARIZE ( Deal, Deal[customer name], Deal[industry] )
Phil_Seamark
Microsoft Employee
8 years agoWhen you say you create the Customer table by Summarizing the Deal table, how do you do this? Do you do it in Power Query, as a calculated table or other?
kennyyip
Helper I
8 years agoIt's a calculated table using SUMMARIZE
- v-chuncz-msft8 years ago
Community Support
You may refer to the DAX below.
Column = LOOKUPVALUE ( Deal[industry], Deal[customer name], Customer[customer name] )
Table = SUMMARIZE ( Deal, Deal[customer name], Deal[industry] )