Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
Anonymous
Not applicable

DAX count unique values after union

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 🙂  

post.PNG

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!

4 REPLIES 4
felipegm10
New Member

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))))

v-xicai
Community Support
Community Support

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])

 

6.png 

 

 

 

 

Best Regards,

Amy

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Anonymous
Not applicable

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 )

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

Find out what's new and trending in the Fabric Community.