Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago
Solved

Replace Values from Another Table value

Hello, Need your help to write a DAX statement I have the values in Table A, which needs to be converted to the value in B The first column ID is a unique column I have the following question: -...
  • ryan_mayu's avatar
    5 years ago

    Anonymous 

    you can try to create a new column

    Column = 
    VAR a=LOOKUPVALUE(TableB[Value],TableB[ID],TableA[ID])
    return if(ISBLANK(a),TableA[Value],a)