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

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

Reply
Anonymous
Not applicable

Distinct count from multiple tables

Hi all,

 

Here my data model :

IMG1.jpg

 

 

I'd like to get the number of distinct apps (with Cost> 0), whatever the source

 

EXPECTED RESULT in a DAX mesure : 2 (to show this figure into a card chart.)

From now, I get 3 because APP01 is counted twice because it's matching into both sources

 

IMG2.jpg

 

 

 

 I thank you in advance for tips and advice.

 

 

 

 

1 REPLY 1
sjoerdvn
Super User
Super User

if the mapping table is filtering source1 and source2, try something like this

App count = COUNTROWS(FILTER(VALUES('MAPPING TABLE'[APPS NAME])
	,CALCULATE(COUNTROWS(SOURCE1), SOURCE1[Cost]>0) + CALCULATE(COUNTROWS(SOURCE2),SOURCE2[Cost]>0) >0))

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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