Forum Discussion
Anonymous
5 years agoNot applicable
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: -...
- 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)
ryan_mayu
5 years agoSuper User
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)