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
Super User
5 years agoAnonymous
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)
Anonymous
5 years agoNot applicable
Thank you Ryan for the prompt reply - your approach seems to be working for creating a new column
Is there a possibility to replace the values in the same Table A (this will save lot of rework needed, as i have already designed the formulas, joined based on the Value Column in A table - Kind regards/J