Forum Discussion
Anonymous
3 years agoNot applicable
Combining Data from two different columns stored in a variable
Consider the following two variables: VAR A = MembershipHistory[Membership] VAR B = Memberships[Membership] Table MembershipHistory and Memberships have some common values in their column Memb...
- 3 years ago
Anonymous Try:
RETURN COUNTROWS(DISTINCT(UNION(A, B)))
Greg_Deckler
3 years agoCommunity Champion
Anonymous Try:
RETURN
COUNTROWS(DISTINCT(UNION(A, B)))Anonymous
3 years agoNot applicable
Hi Greg, that works for this problem, but I also have another measure where the variable A is storing 3 columns and variable B is storing 2 columns. The union will not work there as the no of columns are not same. Can you please help with that too?
Thanks in advance
- v-easonf-msft3 years agoCommunity Support
Hi, Anonymous
Please check if formula below could help:
COUNTROWS ( DISTINCT ( UNION ( VALUES ( A[Column1] ), VALUES ( B[Column1] ) ) ) )Best Regards,
Community Support Team _ Eason