Forum Discussion
adam_mac
Helper I
5 years agoDAX 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 cou...
- Anonymous5 years ago
[No Activity Check] = if( NOT( ISEMPTY( C4C_Referral_leads) ) && ISEMPTY( MergedActivities ), 1 )
Anonymous
5 years agoNot applicable
[No Activity Check] =
if(
NOT( ISEMPTY( C4C_Referral_leads) )
&&
ISEMPTY( MergedActivities ),
1
)