Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi everybody,
I am trying to create measure counting unique values of particular column, which is the result of UNION of two columns with similar data from two diffrent tables. It looks much easier with example 🙂
It is not my buisness caase, but similar to it. My tables have different structure, so I can perform UNION only over columns. And the issues is that DISTINCOUNT works only with column, and in my case I can specify particular column name after UNION statement.
Please help me with this case.
Thank you in advance!
Hey, I had the same problem before but I got the solution. Use this measure, it's simple and works fine:
Measure= COUNTROWS(DISTINCT(UNION(VALUES(Table1[sales_manager]),VALUES(Table2[manager))))
Hi @Anonymous ,
You can create new measure.
Measure = var t=DISTINCT(UNION(SELECTCOLUMNS(Table1,"column1",Table1[sales_manager]),SELECTCOLUMNS(Table2,"column1",Table2[manager])))
return COUNTX(t,[column1])
Best Regards,
Amy
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @v-xicai ,
Thank you for the reply!
Unfortunately DISTINCT doesn't want to accept table expression after UNION statement...
Maybe something like this:
Manager # = VAR ManagerTable1 = DISTINCT ( Table1[sales_manager] ) VAR ManagerTable2 = DISTINCT ( Table2[manager] ) VAR CombinedManagers = UNION ( ManagerTable1, ManagerTable2 ) VAR UniqueManagers = DISTINCT ( CombinedManagers ) RETURN COUNTROWS ( UniqueManagers )