Forum Discussion

kennyyip's avatar
kennyyip
Icon for Helper I rankHelper I
8 years ago
Solved

vlookup 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 ...
  • v-chuncz-msft's avatar
    v-chuncz-msft
    8 years ago

    kennyyip,

     

    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] )