Forum Discussion
Anonymous
4 years agoNot applicable
Full outer join using calculated columns
Hello Folks, AFAIK, we cannot Join tables using calculated columns. But, I am now in a tricky situation that, I have TableA and TableB. TableA has calculated columns( NOT custom columns.). ...
- Anonymous4 years ago
Hi Anonymous ,
You could get the result by creating a measure.
Measure = var _value = CALCULATE(SUM(TableA[ApprovedSpend]),FILTER(ALLSELECTED(TableA),TableA[PostingYear]=SELECTEDVALUE(TableA[PostingYear])&&TableA[GroupID]=SELECTEDVALUE(TableB[GroupID]))) return _value+0Best Regards,
Jay
Anonymous
4 years agoNot applicable
Hi Anonymous ,
You could get the result by creating a measure.
Measure =
var _value = CALCULATE(SUM(TableA[ApprovedSpend]),FILTER(ALLSELECTED(TableA),TableA[PostingYear]=SELECTEDVALUE(TableA[PostingYear])&&TableA[GroupID]=SELECTEDVALUE(TableB[GroupID])))
return
_value+0
Best Regards,
Jay