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

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
adam_mac
Helper I
Helper I

DAX IF AND formula between measures

Hi, my skills at DAX if statements are proving atrocious so any help is much appreciated. 

 

I am trying to create a measure that simply calculates if the count of referral leads is > 0 and the count of activities relating to that referral is blank, to then mark true or false (the idea being to eventually highlight leads that have had no activity).

 

The formula i have written seems to kind of work but it is still marking a zero against accounts with no activities against them. Any idea what ive done wrong?

 

No Activity Check = 

SUMX(

C4C_Referral_Leads,

IF(

DISTINCTCOUNT( C4C_Referral_Leads[Lead ID] ) > 0 &&

DISTINCTCOUNT( MergedActivities[Activity ID] ) = BLANK(),

1,0))

 

adam_mac_3-1626968961155.png

 

 

 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

 

[No Activity Check] = 
if(
	NOT( ISEMPTY( C4C_Referral_leads) )
	&&
	ISEMPTY( MergedActivities ),
	1
)

 

View solution in original post

1 REPLY 1
Anonymous
Not applicable

 

[No Activity Check] = 
if(
	NOT( ISEMPTY( C4C_Referral_leads) )
	&&
	ISEMPTY( MergedActivities ),
	1
)

 

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

Check out the February 2026 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.